15 lines
621 B
JSON
15 lines
621 B
JSON
{
|
|
"name": "sha256sum",
|
|
"section": 1,
|
|
"title": "compute SHA-256 checksums",
|
|
"synopsis": ["sha256sum [FILE]..."],
|
|
"description": "Prints SHA-256 hex digests in GNU-style lines (hash, two spaces, name). Uses Web Crypto globalThis.crypto.subtle when available. Reads stdin when no operands or when FILE is -.",
|
|
"options": [{ "flag": "-h, --help", "meaning": "Print usage" }],
|
|
"keywords": ["sha256sum", "checksum", "bare-os", "coreutils"],
|
|
"examples": [
|
|
{ "caption": "checksum files", "code": "sha256sum *.js" },
|
|
{ "caption": "stdin", "code": "cat f | sha256sum" }
|
|
],
|
|
"listCategory": "coreutils"
|
|
}
|