Skip to content

Instantly share code, notes, and snippets.

@mmguero
Created November 4, 2024 05:49
Show Gist options
  • Save mmguero/7227022fb1d5d4827c18494921c0d41b to your computer and use it in GitHub Desktop.
Save mmguero/7227022fb1d5d4827c18494921c0d41b to your computer and use it in GitHub Desktop.
rename files sequentially with leading zeroes, keeping extension
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