Tagged Questions
2
votes
2answers
268 views
Running sha1sum into several directories
I have several directories that share a common parent directory. In each directory there are regular files, but no other subdirectories. Something like this:
top/dir-1
top/dir-1/file-11
...
-2
votes
1answer
778 views
Bash function to compare two binary files [closed]
I need a function to compare 2 binary files, here the requirements:
2 files, not 3 or 4
files can't be assumed to exist
avoid running checksum (CRC/MD5/SHA/...) until one must
if running multiple ...