sha224sum

v0.0.26

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 SHA224 checksum for one or more files:

sha224sum {{path/to/file1 path/to/file2 ...}}

Calculate and save the list of SHA224 checksums to a file:

sha224sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.sha224}}

Calculate a SHA224 checksum from stdin:

{{command}} | sha224sum

Read a file of SHA224 sums and filenames and verify all files have matching checksums:

sha224sum --check {{path/to/file.sha224}}

Only show a message for missing files or when verification fails:

sha224sum --check --quiet {{path/to/file.sha224}}

Only show a message when verification fails, ignoring missing files:

sha224sum --ignore-missing --check --quiet {{path/to/file.sha224}}

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.