Stop Microsoft
Operating Systems => Linux and UNIX => Topic started by: Agent007 on 29 May 2003, 16:46
-
Hi all,
Is it possible to convert multiple filenames in a directory to lowercase? how?
thanks,
007
-
Try a shell script. I'm guessing it would involve "for file in $1" and tr, but I'm not sure. I would like to hear how you do it because I'm interested in a similar thing. Also converting spaces to underscores would be good too. ;)
-
Can you believe that I had a similar question myself? I think that a shell script would propably do the job as Faust wrote, but I really suck at shell scripting. :rolleyes:
So, if anyone has an answer to this, could you please share it with us? (http://smile.gif)
-
quote:
Originally posted by Faust:
Try a shell script. I'm guessing it would involve "for file in $1" and tr, but I'm not sure. I would like to hear how you do it because I'm interested in a similar thing. Also converting spaces to underscores would be good too. ;)
for the underscore i believe something like:
ls | while read item; do mv "$item" `echo "$item" | sed 's/\ /_/g'`; done
might want to double check on the sed part, s and g might need to be reversed. it's been a while but that should work. for subdirectories you could do find instead of ls
-
:-D
-
There is a problem with the script if the directory name is in Uppercase. Is there another alternative?
thanks
-
Yup, just had to only make the conversions effect the last directory element (http://smile.gif)
-
Thanks for that all, now I can get onto prettying up all my files. (http://smile.gif) (http://smile.gif) (http://smile.gif)
With 85G+ i didn't really want to do all this by hand... ;)
-
anytime :D
-
Excellent! Thanks Solo! (http://smile.gif) ;)
-
hi!
The directory thing works now....but not the uppercase to lower case. Am attaching the output below....
quote:
mv: `/mnt/Setups/linux/window_managers/gkrellm/Acqua.gkrellm.tar.gz' and `/mnt/Setups/linux/window_managers/gkrellm/Acqua.gkrellm.tar.gz' are the same file
mv: `/mnt/Setups/linux/window_managers/gkrellm/CoplandOS.gkrellm.tar.gz' and `/mnt/Setups/linux/window_managers/gkrellm/CoplandOS.gkrellm.tar.gz' are the same file
mv: `/mnt/Setups/linux/window_managers/gkrellm/theme_MonkeyLovers.tar.gz' and `/mnt/Setups/linux/window_managers/gkrellm/theme_MonkeyLovers.tar.gz' are the same file
In the 1st case, Acqua hasnt changed
In the 2nd, CoplandOS hasnt
In the 3rd MonkeyLovers
thanks,
007
-
hmm try putting this line in front of the `mv' command in the script and post the output here.
echo "$file::$newf"
see, that shouldn't be able to happen because it checks if the files are still the same before it does 'mv'. i might of messed up somewhere (was in a hurry (http://smile.gif) )
-
Here it is....
quote:
/mnt/Setups/linux/window_managers/gkrellm/Acqua.gkrellm.tar.gz::/mnt/Setups/linux/window_managers/gkrellm/acqua.gkrellm.tar.gz mv /mnt/Setups/linux/window_managers/gkrellm/Acqua.gkrellm.tar.gz /mnt/Setups/linux/window_managers/gkrellm/acqua.gkrellm.tar.gz
/mnt/Setups/linux/window_managers/gkrellm/ASDDFASDF_sdakjfkas_aa.zip::/mnt/Setups/linux/window_managers/gkrellm/asddfasdf_sdakjfkas_aa.zip mv /mnt/Setups/linux/window_managers/gkrellm/ASDDFASDF_sdakjfkas_aa.zip /mnt/Setups/linux/window_managers/gkrellm/asddfasdf_sdakjfkas_aa.zip
/mnt/Setups/linux/window_managers/gkrellm/CoplandOS.gkrellm.tar.gz::/mnt/Setups/linux/window_managers/gkrellm/coplandos.gkrellm.tar.gz mv /mnt/Setups/linux/window_managers/gkrellm/CoplandOS.gkrellm.tar.gz /mnt/Setups/linux/window_managers/gkrellm/coplandos.gkrellm.tar.gz
/mnt/Setups/linux/window_managers/gkrellm/theme_MonkeyLovers.tar.gz::/mnt/Setups/linux/window_managers/gkrellm/theme_monkeylovers.tar.gz mv /mnt/Setups/linux/window_managers/gkrellm/theme_MonkeyLovers.tar.gz /mnt/Setups/linux/window_managers/gkrellm/theme_monkeylovers.tar.gz
-
hi!!
Has anyone found a fix for this? or is there an alternative??
thanks