Files
bare-operating-system/packages/bare-os-coreutils/man/pages/exit.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

27 lines
590 B
JSON

{
"name": "exit",
"section": 1,
"title": "exit the shell or booter session",
"synopsis": [
"exit [status]"
],
"description": "When run as /bin/exit, requests the booter to end the session via ctx.requestBooterExit. Status defaults to 0.",
"options": [],
"keywords": [
"exit",
"bare-os",
"coreutils"
],
"bareOsNotes": "Also available as a shell builtin with different wiring.",
"examples": [
{
"caption": "leave session with status",
"code": "exit 0"
},
{
"caption": "from script",
"code": "/bin/exit 42"
}
]
}