2014-02-10 15:44:02 -08:00
|
|
|
# md5sum
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
> Calculate MD5 cryptographic checksums.
|
2021-04-01 17:54:26 +02:00
|
|
|
> More information: <https://www.gnu.org/software/coreutils/md5sum>.
|
2014-02-10 15:44:02 -08:00
|
|
|
|
2016-01-20 03:45:42 -08:00
|
|
|
- Calculate the MD5 checksum for a file:
|
2014-02-10 15:44:02 -08:00
|
|
|
|
2021-09-03 16:36:19 -03:00
|
|
|
`md5sum {{path/to/file}}`
|
2016-01-20 03:45:42 -08:00
|
|
|
|
|
|
|
- Calculate MD5 checksums for multiple files:
|
|
|
|
|
2021-09-03 16:36:19 -03:00
|
|
|
`md5sum {{path/to/file1}} {{path/to/filen2}}`
|
2014-02-10 15:44:02 -08:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Read a file of MD5SUMs and verify all files have matching checksums:
|
2014-02-10 15:44:02 -08:00
|
|
|
|
2021-09-03 16:36:19 -03:00
|
|
|
`md5sum -c {{path/to/file.md5}}`
|
2020-10-28 18:46:25 +01:00
|
|
|
|
|
|
|
- Calculate a MD5 checksum from the standard input:
|
|
|
|
|
|
|
|
`echo "{{text}}" | md5sum`
|