Answers for "How to create a hash file using SHA256 sum and save it in a file"

0

How to create a hash file using SHA256 sum and save it in a file

shasum -a file.txt > file.txt.sha256

#To verify
shasum -c file.txt.sha256

#To output the file content
cat file.txt.sha256
Posted by: Guest on April-29-2022

Code answers related to "How to create a hash file using SHA256 sum and save it in a file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language