Created
January 30, 2025 17:27
-
-
Save do-me/90afb1ee1952fc6c4fd50e5f2b46a982 to your computer and use it in GitHub Desktop.
Rename all webp files in folder with chronological numbers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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