Created
April 30, 2020 23:40
-
-
Save mattlockyer/1343154e9c12c3bd8317483024333e99 to your computer and use it in GitHub Desktop.
Rename all files of a type in a folder with a sequential number scheme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a=1 | |
for i in *.jpg; do | |
new=$(printf "%04d.jpg" "$a") #04 pad to length of 4 | |
mv -i -- "$i" "$new" | |
let a=a+1 | |
done | |
# from https://stackoverflow.com/a/3211670/1060487 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment