Files
bare-operating-system/packages/bare-os-coreutils/man/pages/cat.json
T
Raven Scott f8a0dad897 feat: kernel roadmap wave — bits4, policy v4, Pear/Bare compatibility
- 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
2026-04-04 02:51:33 -04:00

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"
}
]
}