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

{
"name": "test",
"section": 1,
"title": "evaluate a condition",
"synopsis": [
"test [OPTION]... [OPERAND]..."
],
"description": "Bare OS implementation of evaluate a condition. Full behavior is defined in packages/bare-os-coreutils/src/test.js.",
"options": [],
"keywords": [
"test",
"bare-os",
"coreutils"
],
"examples": [
{
"caption": "file exists",
"code": "test -f ~/.barerc && echo yes"
},
{
"caption": "directory",
"code": "test -d /home/user"
},
{
"caption": "string equal",
"code": "test \"$USER\" = guest"
}
]
}