Skip to content

Instantly share code, notes, and snippets.

@emmadesilva
Created February 5, 2024 21:45
Show Gist options
  • Select an option

  • Save emmadesilva/77d821b328cd022b3bc60607e3ffecbb to your computer and use it in GitHub Desktop.

Select an option

Save emmadesilva/77d821b328cd022b3bc60607e3ffecbb to your computer and use it in GitHub Desktop.
Renames images in the directory to their MD5 checksums
for file in *.jpg *.jpeg *.png *.gif *.webp; do
mv "$file" "$(md5sum "$file" | cut -d ' ' -f 1).${file##*.}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment