Skip to content

Instantly share code, notes, and snippets.

@jimschubert
Created May 10, 2016 13:43
Show Gist options
  • Save jimschubert/f4c6c39cc8bdf8c729e48b848dfa46f0 to your computer and use it in GitHub Desktop.
Save jimschubert/f4c6c39cc8bdf8c729e48b848dfa46f0 to your computer and use it in GitHub Desktop.
Bash shell function to verify md5sum
#!/bin/env bash
function md5sum {
md5 "$1" | cut -f2 -d'=' | tr -cd "[:alnum:]"
}
function md5sum.verify {
if [[ ( -f "$1" ) || ( ! -f "$2" ) || ( $(echo "$1") == "" ) ]] ; then
echo 'usage: md5sum.verify checksum filename';
else
diff <(echo -n "$1") <(md5sum "$2") -q
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment