Skip to content

Instantly share code, notes, and snippets.

@tuttelikz
Created January 4, 2018 09:44
Show Gist options
  • Save tuttelikz/7df64c323ac94dd120f1a1f4ebcfa094 to your computer and use it in GitHub Desktop.
Save tuttelikz/7df64c323ac94dd120f1a1f4ebcfa094 to your computer and use it in GitHub Desktop.
Rename filename bash
num=0; for i in *; do mv "$i" "$(printf '%04d' $num).${i#*.}"; ((num++)); done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment