Skip to content

Instantly share code, notes, and snippets.

@sgqy
Created August 22, 2018 16:17
Show Gist options
  • Save sgqy/a5c2be49bf12a18f4c1900fb90ab5a83 to your computer and use it in GitHub Desktop.
Save sgqy/a5c2be49bf12a18f4c1900fb90ab5a83 to your computer and use it in GitHub Desktop.
#!/bin/bash
imgs=($(find . -type f))
imgc=${#imgs[@]}
for (( i=0; i<${imgc}; i++ ));
do
img="${imgs[$i]}"
sum=($(md5sum ${img}))
ext=$(echo ${img} | sed 's/^.*\.//g')
mv "${img}" "${sum}.${ext}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment