Mercurial > hg > env-test-daniele
annotate audio/echo/s2u.sh @ 25:4a4bd554b4c1 tip
Closing this sub branch.
author | Daniele Barchiesi <daniele.barchiesi@eecs.qmul.ac.uk> |
---|---|
date | Mon, 25 Mar 2013 14:02:54 +0000 |
parents | ebc284fa5f25 |
children |
rev | line source |
---|---|
gyorgy@4 | 1 #! /bin/bash |
gyorgy@4 | 2 |
gyorgy@4 | 3 # Removes spaces in filenames (replaces them with underscore) |
gyorgy@4 | 4 # Thu, 18 Oct 2007 21:34:45 -0400 |
gyorgy@4 | 5 |
gyorgy@4 | 6 for file in *; |
gyorgy@4 | 7 do |
gyorgy@4 | 8 echo Converting "$file" to "${file/_pad_/_}" |
gyorgy@4 | 9 mv "$file" "${file/_pad_/_}" |
gyorgy@4 | 10 done |
gyorgy@4 | 11 |