Skip to content

Instantly share code, notes, and snippets.

@rudSarkar
Created April 10, 2022 07:10
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 rudSarkar/e9abc8e866b745f0630203c919a4194a to your computer and use it in GitHub Desktop.
Save rudSarkar/e9abc8e866b745f0630203c919a4194a to your computer and use it in GitHub Desktop.
Rename all files to number list like 1.jpg 2.jpg 3.jpg
ls | cat -n | while read n f; do mv "$f" "$n.jpg"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment