Forrest logo
back to context overview

rhash

List of commands for rhash:

  • rhash:tldr:006cc rhash: Calculate the SHA3 digest of a text message.
    $ rhash --sha3-256 --message '${message}'
    try on your machine
    explain this command
  • rhash:tldr:354ce rhash: Use custom output template.
    $ rhash --printf '${%p\t%s\t%{mtime}\t%m\n}' ${filename}
    try on your machine
    explain this command
  • rhash:tldr:6f626 rhash: Recursively process a directory to generate an SFV file using SHA1.
    $ rhash --sha1 --recursive ${path-to-folder} > ${path-to-output-sfv}
    try on your machine
    explain this command
  • rhash:tldr:d23f7 rhash: Calculate default CRC32 digests of a file.
    $ rhash ${filename}
    try on your machine
    explain this command
  • rhash:tldr:f12a3 rhash: Calculate CRC32 digest of a file and output digest encoded in base64 using BSD format.
    $ rhash --base64 --bsd ${filename}
    try on your machine
    explain this command
  • rhash:tldr:f7d9b rhash: Verify the integrity of files based on an SFV file.
    $ rhash --check ${filename-sfv}
    try on your machine
    explain this command
back to context overview