Skip to content

Instantly share code, notes, and snippets.

View avmohan's full-sized avatar
🎯
Focusing

Abhijith V Mohan avmohan

🎯
Focusing
View GitHub Profile
@mloberg
mloberg / gist:3750653
Created September 19, 2012 16:35
Find file in git based on md5 checksum.
#!/bin/sh
CHECKSUM=$1
FILE=$2
if [[ -z "$CHECKSUM" ]]; then
echo "Usage: $0 md5 file"
exit 1
elif [[ -z "$FILE" ]]; then
echo "Usage: $0 md5 file"