[opensuse] Rename capital suffix to lower suffix
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 -- Duaine Hechler Piano, Player Piano, Pump Organ Tuning, Servicing & Rebuilding Reed Organ Society Member Florissant, MO 63034 (314) 838-5587 dahechler@att.net www.hechlerpianoandorgan.com -- Home & Business user of Linux - 10 years -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
Duaine & Laura Hechler wrote:
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 ?
rename MP3 mp3 *.MP3 /Per -- Per Jessen, Zürich (6.8°C) -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
Per Jessen schreef:
Duaine & Laura Hechler wrote:
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 ?
rename MP3 mp3 *.MP3
/Per
Of course this solution is simpler than mine ;-) Erland. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
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
On Tue, 10 Feb 2009 02:44:23 -0600 Duaine & Laura Hechler <dahechler@att.net> wrote:
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 ?
www.google.com ? -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On Tuesday February 10 2009, Steve Jeppesen wrote:
On Tue, 10 Feb 2009 02:44:23 -0600
Duaine & Laura Hechler <dahechler@att.net> wrote:
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 ?
www.google.com ?
Nah. Google is basically just a nosy neighbor, but whenever you ask them for help with a something, they're busy with something else. RRS -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
participants (6)
-
Duaine & Laura Hechler
-
Erland Moller
-
Per Jessen
-
Philipp Thomas
-
Randall R Schulz
-
Steve Jeppesen