Why ? Sound Juicer exhibited some strange behavior (I'm sure is manageable...) and it added a _ to all the file names... I needed to rename a pile of files to remove the "_". When doing nonsense such as this, I like to first echo the output out to review, before actually doing the work. [jradtke@cypher Surfing_the_Void]$ for FILE in `ls`; do echo "mv $FILE '`echo $FILE | sed 's/_/ /g'`'"; done mv 10_-_Cypherspeed.mp3 '10 - Cypherspeed.mp3' mv 1_-_Echoes.mp3 '1 - Echoes.mp3' mv 2_-_The_Same_Space.mp3 '2 - The Same Space.mp3' mv 3_-_Surfing_the_Void.mp3 '3 - Surfing the Void.mp3' mv 4_-_Valley_of_the_Calm_Trees.mp3 '4 - Valley of the Calm Trees.mp3' mv 5_-_Venusia.mp3 '5 - Venusia.mp3' mv 6_-_Extra_Astronomical.mp3 '6 - Extra Astronomical.mp3' mv 7_-_Twin_Flames.mp3 '7 - Twin Flames.mp3' mv 8_-_Flashover.mp3 '8 - Flashover.mp3' mv 9_-_Future_Memorie...
Linux: The whole world made it for you... This blog is a collection of things I come across either at home or at work as a Linux Administrator. I have worked as an Admin working with Solaris, SAN, Backups and Linux at the Enterprise level for over 16 years.