tldr/pages/common/md5sum.md

21 lines
470 B
Markdown
Raw Normal View History

# md5sum
> Calculate MD5 cryptographic checksums.
> More information: <https://www.gnu.org/software/coreutils/md5sum>.
2016-01-20 11:45:42 +00:00
- Calculate the MD5 checksum for a file:
`md5sum {{path/to/file}}`
2016-01-20 11:45:42 +00:00
- Calculate MD5 checksums for multiple files:
`md5sum {{path/to/file1}} {{path/to/filen2}}`
- Read a file of MD5SUMs and verify all files have matching checksums:
`md5sum -c {{path/to/file.md5}}`
2020-10-28 17:46:25 +00:00
- Calculate a MD5 checksum from the standard input:
`echo "{{text}}" | md5sum`