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

22 lines
497 B
JSON

{
"name": "timeout",
"section": 1,
"title": "run command with bounded wall time",
"synopsis": [
"timeout [OPTION]... [OPERAND]..."
],
"description": "Bare OS implementation of run command with bounded wall time. Full behavior is defined in packages/bare-os-coreutils/src/timeout.js.",
"options": [],
"keywords": [
"timeout",
"bare-os",
"coreutils"
],
"examples": [
{
"caption": "kill long job after 5s",
"code": "timeout 5 slow-cmd"
}
]
}