Created
March 19, 2017 22:06
-
-
Save brad-anton/9b9dd7a8d0058f76609fc58cf484ffc9 to your computer and use it in GitHub Desktop.
hashdd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ echo 'tst' > file1 | |
$ echo 'test' > file2 | |
$ md5sum * > hashes.md5 | |
$ cat hashes.md5 | |
746a2ef902cf7596d0c9f66add5524d5 file1 | |
d8e8fca2dc0f896fd7cb4cb0031ba249 file2 | |
$ md5sum -c hashes.md5 | |
file1: OK | |
file2: OK |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment