Skip to content

Instantly share code, notes, and snippets.

@do-me
Created January 30, 2025 17:27
Show Gist options
  • Save do-me/90afb1ee1952fc6c4fd50e5f2b46a982 to your computer and use it in GitHub Desktop.
Save do-me/90afb1ee1952fc6c4fd50e5f2b46a982 to your computer and use it in GitHub Desktop.
Rename all webp files in folder with chronological numbers
find . -maxdepth 1 -type f -name "*.webp" 2>/dev/null | sort | awk '{print NR, $0}' | while read num old_name; do new_name=$(printf "%04d.webp" "$num"); mv "$old_name" "$new_name"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment