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

32 lines
823 B
JSON

{
"name": "getconf",
"section": 1,
"title": "get configuration values",
"synopsis": [
"getconf [OPTION]... [OPERAND]..."
],
"description": "Prints a fixed subset of configuration limits for Bare OS (JavaScript runtime and VFS). There is no host sysconf(3); values are documented constants, not live kernel queries.",
"options": [
{
"flag": "-a",
"meaning": "Write all known variables (name then value per pair)"
}
],
"keywords": [
"getconf",
"bare-os",
"coreutils"
],
"bareOsNotes": "Unknown variable names exit with status 1. Not a full Issue 7 getconf implementation.",
"examples": [
{
"caption": "path length limit",
"code": "getconf PATH_MAX"
},
{
"caption": "list known names and values",
"code": "getconf -a"
}
]
}