After downloading a file that has a md5 checksum available I currently check it with
md5 *file* | grep *given_checksum*
e.g.
md5 file.zip | grep -i B4460802B5853B7BB257FBF071EE4AE2
but it seemed funny to me to require grep and the pipe for what is surely a very common task. A stickler for doing things efficiently, I wondered there is a better way of doing this?
md5
? From which package it comes? – manatwork Jun 05 '13 at 14:48