Skip to content

Instantly share code, notes, and snippets.

@adrienjoly
Created December 23, 2023 10:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adrienjoly/62a59641d969115817d6d54423260914 to your computer and use it in GitHub Desktop.
Save adrienjoly/62a59641d969115817d6d54423260914 to your computer and use it in GitHub Desktop.
Rename photos by date
for f in photos/*.*; do
mv "$f" "photos/$(stat -f '%Sm' -t '%Y-%m-%d_%H%M%S' "$f").${f##*.}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment