Skip to content

Instantly share code, notes, and snippets.

@superboum
Created April 18, 2020 13:34
Show Gist options
  • Save superboum/a5fb840176000c257727b9b323467ef6 to your computer and use it in GitHub Desktop.
Save superboum/a5fb840176000c257727b9b323467ef6 to your computer and use it in GitHub Desktop.
rename incrementally files
v=0; for e in `ls`; do v=$((v+1)) ; idx=$(printf "%06d" $v) ; mv $e $idx.jpg ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment