> Is there any command available on FreeBSD for testing > sha256 sums? Maybe under a different name.
Additionally, sha256 doesn't have the -c option. So, you should use diff(1) instead. % sha256 -r download/* >sha256sums.tmp % diff -w sha256sums sha256sums.tmp # -w option ignores spaces. % uname -rs FreeBSD 6.1-RELEASE -- Shigio YAMAGUCHI <[email protected]> PGP fingerprint: D1CB 0B89 B346 4AB6 5663 C4B6 3CA5 BBB3 57BE DDA3
