Return to Snippet

Revision: 3764
at September 13, 2007 06:45 by benpjohnson


Initial Code
for FILE in * ; do NEWFILE=`echo $FILE | sed 's/-//g'` ; mv "$FILE" $NEWFILE ; done

Initial URL


Initial Description
Manipulate the names of all the files in a folder in bash

Initial Title
batch rename files

Initial Tags
files

Initial Language
Bash