On Thu, Sep 17, 2009 at 12:48 PM, narendra sisodiya <[email protected]> wrote: > http://www.ghacks.net/2009/07/22/bulk-renaming-made-easy-with-thunar-bulk-renamer/ > http://thunar.xfce.org/pwiki/documentation/bulk_renamer >
I've had the need for renaming files in bulk pretty often. Above must be a neat tool but this is how I used to get my work done. For example, if I had to rename files ending with ".JPG" to ".jpg", $ for i in *JPG; do j=`basename $i .JPG`; mv "$i" "$j".jpg; done As you suggested, adding date/time stamps are straight forward by this too. Just sharing ideas, Sharad --~--~---------~--~----~------------~-------~--~----~ Do you have another question? Click here - http://groups.google.com/group/iitdlug/post l...@iitd community mailing list -- http://groups.google.com/group/iitdlug -~----------~----~----~----~------~----~------~--~---
