I know the Terminal command for validating folder contents with md5:
find -s ~/Desktop/folder1 -type f -exec md5sum {} \; | md5sum
Is there a similar way to do this using sha? It doesn’t seem to work by simply replacing “md5” with “sha” in the command, but I’m not very familiar with using the Terminal.
find -s ~/Desktop/folder1 -type f -exec md5sum {} \; | md5sum
Is there a similar way to do this using sha? It doesn’t seem to work by simply replacing “md5” with “sha” in the command, but I’m not very familiar with using the Terminal.