I had to check the entire directory for file changes.
But with the exception of time stamps, directory owners.
The goal is to get the same amount anywhere if the files are identical.
Including placed on other machines, regardless of anything other than files or changes to them.
md5sum * | md5sum | cut -d' ' -f1
It generates a list of hashes by file, and then combines these hashes into one.
This is much faster than the tar method.
For greater confidentiality of our hashes, we can use sha512sum according to the same recipe.
sha512sum * | sha512sum | cut -d' ' -f1
Hashes are also identical wherever sha512sum is used , but there is no known way to change this.
NVRM Jan 28 '18 at 15:17 2018-01-28 15:17
source share