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