view 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
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