Forrest logo
back to context overview

sha224sum

List of commands for sha224sum:

  • sha224sum:tldr:0e44c sha224sum: Read a file of SHA224 sums and filenames and verify all files have matching checksums.
    $ sha224sum --check ${filename-sha224}
    try on your machine
    explain this command
  • sha224sum:tldr:714ec sha224sum: Only show a message when verification fails, ignoring missing files.
    $ sha224sum --ignore-missing --check --quiet ${filename-sha224}
    try on your machine
    explain this command
  • sha224sum:tldr:81bc4 sha224sum: Calculate and save the list of SHA224 checksums to a file.
    $ sha224sum ${filename1 filename2 ---} > ${filename-sha224}
    try on your machine
    explain this command
  • sha224sum:tldr:8fdb7 sha224sum: Calculate a SHA224 checksum from `stdin`.
    $ ${command} | sha224sum
    try on your machine
    explain this command
  • sha224sum:tldr:a36bf sha224sum: Only show a message for missing files or when verification fails.
    $ sha224sum --check --quiet ${filename-sha224}
    try on your machine
    explain this command
  • sha224sum:tldr:af8d4 sha224sum: Calculate the SHA224 checksum for one or more files.
    $ sha224sum ${filename1 filename2 ---}
    try on your machine
    explain this command
back to context overview