view audio/echo/s2u.sh @ 4:ebc284fa5f25

added audio part 4
author George Fazekas <gyorgy.fazekas@eecs.qmul.ac.uk>
date Wed, 06 Mar 2013 15:50:23 +0000
parents
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