md5sum: replace filename by path/to/file (#6465)

This commit is contained in:
Axel Navarro
2021-09-03 16:36:19 -03:00
committed by GitHub
parent ecd8679008
commit 4887b989c6
3 changed files with 9 additions and 9 deletions

View File

@@ -5,15 +5,15 @@
- Calculate the MD5 checksum for a file:
`md5sum {{filename1}}`
`md5sum {{path/to/file}}`
- Calculate MD5 checksums for multiple files:
`md5sum {{filename1}} {{filename2}}`
`md5sum {{path/to/file1}} {{path/to/filen2}}`
- Read a file of MD5SUMs and verify all files have matching checksums:
`md5sum -c {{filename.md5}}`
`md5sum -c {{path/to/file.md5}}`
- Calculate a MD5 checksum from the standard input: