Last active 1733935613

Rename a bunch of files with the same file extension

Revision 73dd99621bd166655293beb426359654d80f4240

gistfile1.txt Raw
1find . | grep 'JPG' | nl -nrz -w3 -v0001 | while read n f; do mv "$f" "$n.JPG"; done