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
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_Memories.mp3 '9 - Future Memories.mp3'
[jradtke@cypher Surfing_the_Void]$ ls -l
total 41888
-rw-rw-r--. 1 jradtke jradtke 5685512 Jan 29 20:03 10 - Cypherspeed.mp3
-rw-rw-r--. 1 jradtke jradtke 4153758 Jan 29 20:00 1 - Echoes.mp3
-rw-rw-r--. 1 jradtke jradtke 3667262 Jan 29 20:00 2 - The Same Space.mp3
-rw-rw-r--. 1 jradtke jradtke 2821826 Jan 29 20:00 3 - Surfing the Void.mp3
-rw-rw-r--. 1 jradtke jradtke 3634532 Jan 29 20:01 4 - Valley of the Calm Trees.mp3
-rw-rw-r--. 1 jradtke jradtke 4659375 Jan 29 20:01 5 - Venusia.mp3
-rw-rw-r--. 1 jradtke jradtke 3616769 Jan 29 20:01 6 - Extra Astronomical.mp3
-rw-rw-r--. 1 jradtke jradtke 4707600 Jan 29 20:02 7 - Twin Flames.mp3
-rw-rw-r--. 1 jradtke jradtke 5808862 Jan 29 20:02 8 - Flashover.mp3
-rw-rw-r--. 1 jradtke jradtke 4109897 Jan 29 20:02 9 - Future Memories.mp3
That's why...
Comments
Post a Comment