summaryrefslogtreecommitdiff
path: root/hacks/poor_mans_digest
blob: 843a28f76c2b61c3967f930dddc8b3f44b6e78c0 (plain)
1
2
3
4
5
#!/bin/bash

head -c 1000000 "$1" > /tmp/$$.a
tail -c 1000000 "$1" > /tmp/$$.b
cat /tmp/$$.a /tmp/$$.b | md5sum