Skip to content

Instantly share code, notes, and snippets.

@Echooff3
Created May 19, 2015 19:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Echooff3/3414dd6404913c8efe4f to your computer and use it in GitHub Desktop.
Save Echooff3/3414dd6404913c8efe4f to your computer and use it in GitHub Desktop.
Rename JPEGS in folder in reverse order
find . -name '*.jpg' | sort -r | gawk 'BEGIN{ a=1 }{ printf "mv \"%s\" %04d.jpg\n", $0, a++ }' | bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment