- protocol/booter: bits4 handshake, proc surfaces, boot policy v4, telemetry v4 - coreutils: nohup + ensure-man-pages; seed-man-pages fixes for extra pages - kernel-runner: no static node:module (Pear); bare-module createRequire - docs: handbook, reference, ADR, compatibility matrix, verify scripts
30 lines
671 B
JSON
30 lines
671 B
JSON
{
|
|
"name": "cat",
|
|
"section": 1,
|
|
"title": "concatenate and print files",
|
|
"synopsis": [
|
|
"cat [OPTION]... [OPERAND]..."
|
|
],
|
|
"description": "Bare OS implementation of concatenate and print files. Full behavior is defined in packages/bare-os-coreutils/src/cat.js.",
|
|
"options": [],
|
|
"keywords": [
|
|
"cat",
|
|
"bare-os",
|
|
"coreutils"
|
|
],
|
|
"examples": [
|
|
{
|
|
"caption": "stdout several files",
|
|
"code": "cat a.txt b.txt"
|
|
},
|
|
{
|
|
"caption": "number lines (use nl)",
|
|
"code": "cat -n file.txt # if supported; else nl file"
|
|
},
|
|
{
|
|
"caption": "here-string via echo pipe",
|
|
"code": "echo hello | cat"
|
|
}
|
|
]
|
|
}
|