Files
bare-operating-system/packages/bare-os-coreutils/man/pages/head.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
618 B
JSON

{
"name": "head",
"section": 1,
"title": "copy the first part of files",
"synopsis": [
"head [OPTION]... [OPERAND]..."
],
"description": "Bare OS implementation of copy the first part of files. Full behavior is defined in packages/bare-os-coreutils/src/head.js.",
"options": [],
"keywords": [
"head",
"bare-os",
"coreutils"
],
"examples": [
{
"caption": "first 10 lines",
"code": "head /etc/os-release"
},
{
"caption": "first N",
"code": "head -n 50 big.log"
},
{
"caption": "stdin",
"code": "cat long.txt | head"
}
]
}