move

Jeremy C. Reed reed at reedmedia.net
Sat Feb 10 18:42:37 MST 2007


On Sat, 10 Feb 2007, Michael Havens wrote:

> 	mv *JPG *jpg

Run:

  echo mv *JPG *jpg

That will show you the arguments that "mv" sees.

mv is not used for mass renames.

Try:

   for j in *.JPG ; do mv $j ${j%JPG}jpg ; done

Have fun!


More information about the PLUG-discuss mailing list