Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 275 Bytes

cli.md

File metadata and controls

16 lines (10 loc) · 275 Bytes

cli snippets

Generating an SHA-256 Hash From the Command Line

echo -n "Do I need to prove myself again?" | openssl dgst -sha256
echo -n "Do I need to prove myself again?" | shasum -a 256
openssl dgst -sha256 data.txt
shasum -a 256 data.txt