Skip to content

Instantly share code, notes, and snippets.

@kozhin
Last active October 2, 2017 11:47
Show Gist options
  • Save kozhin/fd4b789dbb4d9ff77699 to your computer and use it in GitHub Desktop.
Save kozhin/fd4b789dbb4d9ff77699 to your computer and use it in GitHub Desktop.
Batch rename shell script for files with specific extension
#!/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