1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 09:55:34 +02:00
tldr/pages/osx/md5.md
2016-01-08 09:38:59 +01:00

20 lines
352 B
Markdown

# md5
> Calculate MD5 cryptographic checksums.
- Print MD5 checksum for a file:
`md5 {{filename}}`
- Print MD5 checksum for each file in a list or directory:
`md5 {{filename1}} {{filename2}}`
`md5 {{directory/\*}}`
- Output only the md5 checksum (no filename):
`md5 -q {{filename}}`
- Print a checksum of the given string:
`md5 -s {{string}}`