Skip to content

Instantly share code, notes, and snippets.

@miltonlab
Created May 7, 2014 23:07
Show Gist options
  • Save miltonlab/88f1627fe9f3b75ba47f to your computer and use it in GitHub Desktop.
Save miltonlab/88f1627fe9f3b75ba47f to your computer and use it in GitHub Desktop.
Cambia la extension en mayusculas a minusculas
for f in `ls *.PDF`
do
mv $f `echo $f|tr 'PDF' 'pdf'`
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment