Tagged Questions
4
votes
2answers
1k views
How to pipe md5 hash result in shell
I am looking for a simple way to pipe the result of md5sum into another command. Something like this:
$echo -n 'test' | md5sum | ...
My problem is that md5sum outputs not only the hash of the ...
2
votes
2answers
183 views
Replace all files with identical hash
I want to replace all files in a target path with the same name as original.file AND the same hash as orignal.file with new.file. What's the command to do this?
Say I have updated the contents of a ...