sha384sum
Options
--binary
,-b
-
read in binary mode
--check
,-c
-
read hashsums from the FILEs and check them
--tag
-
create a BSD-style checksum
--text
,-t
-
read in text mode (default)
--quiet
,-q
-
don't print OK for each successfully verified file
--status
,-s
-
don't output anything, status code shows success
--strict
-
exit non-zero for improperly formatted checksum lines
--ignore-missing
-
don't fail or report status for missing files
--warn
,-w
-
warn about improperly formatted checksum lines
--zero
,-z
-
end each output line with NUL, not newline
Examples
Calculate the SHA384 checksum for one or more files:
sha384sum {{path/to/file1 path/to/file2 ...}}
Calculate and save the list of SHA384 checksums to a file:
sha384sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.sha384}}
Calculate a SHA384 checksum from stdin
:
{{command}} | sha384sum
Read a file of SHA384 sums and filenames and verify all files have matching checksums:
sha384sum --check {{path/to/file.sha384}}
Only show a message for missing files or when verification fails:
sha384sum --check --quiet {{path/to/file.sha384}}
Only show a message when verification fails, ignoring missing files:
sha384sum --ignore-missing --check --quiet {{path/to/file.sha384}}
The examples are provided by the tldr-pages project under the CC BY 4.0 License.
Please note that, as uutils is a work in progress, some examples might fail.