Md5sum
From Leo's Notes
Last edited on 14 June 2020, at 21:51.
Installation
FreeBSD
FreeBSD does have a md5sum
utility, but it's named gmd5sum
. Hint: the 'g' is for GNU. Build it from ports.
Linux
The GNU md5sum utility should be installed as it is part of coreutils
.
Usage
To md5sum
files recursively, run:
find ./target -type f -exec md5sum {} \;>> /checksum.md5
To verify files from a checksum file, run:
md5sum -c /checksum.md5