Last active
October 2, 2017 11:47
-
-
Save kozhin/fd4b789dbb4d9ff77699 to your computer and use it in GitHub Desktop.
Batch rename shell script for files with specific extension
This file contains 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
#!/bin/bash | |
a=1 | |
e='JPG' | |
for i in *.$e; do | |
new=$(printf "%04d.$e" "$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