Lower linux filenames
Products
Utilities
Resources
Links
Donate
Lower linux filenames
Rename all files in a directory to lowercase.
#!/bin/sh
for x in *; do
y=`echo $x | tr '[A-Z]' '[a-z]'`
if [ $x != $y ]; then
mv $x $y
fi
done
Go back to resources
Copyright © 2003 - 2024 Core Coding®. Hosted by
NDCHost
.
About
Contact
FAQs
Privacy Policy
Terms of Service