Skip to content

Instantly share code, notes, and snippets.

@raygunsix
Created April 18, 2011 19:20
Show Gist options
  • Save raygunsix/925978 to your computer and use it in GitHub Desktop.
Save raygunsix/925978 to your computer and use it in GitHub Desktop.
Converts all file names in the current directory to lower case
#!/bin/sh
# lowerit
# convert all file names in the current directory to lower case
# only operates on plain files--does not change the name of directories
# will ask for verification before overwriting an existing file
# Copied from:
# http://www.linuxjournal.com/content/convert-filenames-lowercase
for x in `ls`
do
if [ ! -f $x ]; then
continue
fi
lc=`echo $x | tr '[A-Z]' '[a-z]'`
if [ $lc != $x ]; then
mv -i $x $lc
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment