LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   renaming to lowercase (https://www.linuxquestions.org/questions/linux-software-2/renaming-to-lowercase-130819/)

locazor 01-02-2004 08:08 AM

renaming to lowercase
 
Does anyone know how I can batch rename all the files and directories in an ISO image to lowercase?

opensourceisfun 01-02-2004 08:29 AM

Extract the files from the iso and try this one liner. Wish I knew a better way. Hope this helps.

find . | perl -ne 'chomp; next unless -e; $new=lc($_); rename $_,$new'


All times are GMT -5. The time now is 06:32 PM.