Skip to content

Instantly share code, notes, and snippets.

@H4kor
Created August 11, 2015 10:19
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 H4kor/9a727240e9a0e322ac2a to your computer and use it in GitHub Desktop.
Save H4kor/9a727240e9a0e322ac2a to your computer and use it in GitHub Desktop.
Renames all PNGs in the folder to consecutive numbers.
a=1
for i in *.png; do
new=$(printf "%04d.png" "$a") #04 pad to length of 4
mv -- "$i" "$new"
let a=a+1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment