Re: move

Página superior
Adjuntos:
Obtener este mensaje como un correo
+ (text/plain)
Eliminar este mensaje
Responder a este mensaje
Autor: Jeremy C. Reed
Fecha:  
A: Main PLUG discussion list
Asunto: Re: move
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!
---------------------------------------------------
PLUG-discuss mailing list -
To subscribe, unsubscribe, or to change you mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss