
sha512sum
List of commands for sha512sum:
-
sha512sum:tldr:380b6 sha512sum: Only show a message for missing files or when verification fails.$ sha512sum --check --quiet ${filename-sha512}try on your machineexplain this command
-
sha512sum:tldr:441b8 sha512sum: Read a file of SHA512 sums and filenames and verify all files have matching checksums.$ sha512sum --check ${filename-sha512}try on your machineexplain this command
-
sha512sum:tldr:46953 sha512sum: Calculate the SHA512 checksum for one or more files.$ sha512sum ${filename1 filename2 ---}try on your machineexplain this command
-
sha512sum:tldr:470de sha512sum: Calculate a SHA512 checksum from `stdin`.$ ${command} | sha512sumtry on your machineexplain this command
-
sha512sum:tldr:63708 sha512sum: Only show a message when verification fails, ignoring missing files.$ sha512sum --ignore-missing --check --quiet ${filename-sha512}try on your machineexplain this command
-
sha512sum:tldr:cbfd8 sha512sum: Calculate and save the list of SHA512 checksums to a file.$ sha512sum ${filename1 filename2 ---} > ${filename-sha512}try on your machineexplain this command