10 Feb
2009
10 Feb
'09
09:00
Duaine & Laura Hechler schreef:
I'm in a project of posting mp3 and all the files are MP3.
Is there a simple mass way to rename the files from MP3 to mp3 ?
Thanks, Duaine
Past the folowing in a file, make it executable and run it in the dir. #!/bin/bash for InFileName in *.MP3 do OutFileName=`echo $InFileName | tr [:upper:] [:lower:]` mv $InFileName $OutFileName done Erland. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org