view audio/echo/s2u.sh @ 7:0238a3f60c2c

added audio part 7
author George Fazekas <gyorgy.fazekas@eecs.qmul.ac.uk>
date Wed, 06 Mar 2013 15:53:57 +0000
parents ebc284fa5f25
children
line wrap: on
line source
#! /bin/bash
 
# Removes spaces in filenames (replaces them with underscore)
# Thu, 18 Oct 2007 21:34:45 -0400
 
for file in *;
do
  echo Converting "$file" to "${file/_pad_/_}"
  mv "$file" "${file/_pad_/_}"
done