How to verify sha256sum for multiple file or one file.

2015-10-30 1 min read bash Linux
So, lets say you have downloaded the SHA256SUMS files. This file contains the sha256sum for multiple files and you want to compare the values for only one or some of them, then the simplest thing you can do is: sha256sum -c SHA256SUMS Now, with this if you do not have some files present then you might get some errors and if you do not want that, then you can try this: Continue reading