Get md5sum without file name

md5unix

I need to get the md5 sum of a file on AIX, but the md5sum program prints the sum followed by the name of the file.

How can I get the sum without the file name.

Best Answer

md5sum < filename

This will give you an empty filename.

Related Question