tldr/pages/osx/md5.md

21 lines
416 B
Markdown
Raw Normal View History

# md5
> Calculate MD5 cryptographic checksums.
> More information: <https://keith.github.io/xcode-man-pages/md5.1.html>.
2016-01-20 11:45:42 +00:00
- Calculate the MD5 checksum for a file:
`md5 {{path/to/file}}`
2016-01-20 11:45:42 +00:00
- Calculate MD5 checksums for multiple files:
`md5 {{path/to/file1 path/to/file2 ...}}`
- Output only the md5 checksum (no filename):
`md5 -q {{path/to/file}}`
- Print a checksum of the given string:
2022-02-14 11:21:43 +00:00
`md5 -s "{{string}}"`