1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/md5sum.md
2021-03-30 15:30:51 +02:00

20 lines
487 B
Markdown

# md5sum
> Calculate MD5 cryptographic checksums.
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/md5sum-invocation.html>.
- Calculate the MD5 checksum for a file:
`md5sum {{filename1}}`
- Calculate MD5 checksums for multiple files:
`md5sum {{filename1}} {{filename2}}`
- Read a file of MD5SUMs and verify all files have matching checksums:
`md5sum -c {{filename.md5}}`
- Calculate a MD5 checksum from the standard input:
`echo "{{text}}" | md5sum`