Files
bare-operating-system/packages/bare-os-coreutils/man/pages/printf.json
T
2026-04-03 20:46:09 -04:00

20 lines
511 B
JSON

{
"name": "printf",
"section": 1,
"title": "format and print",
"synopsis": ["printf [OPTION]... [OPERAND]..."],
"description": "Bare OS implementation of format and print. Full behavior is defined in packages/bare-os-coreutils/src/printf.js.",
"options": [],
"keywords": ["printf", "bare-os", "coreutils"],
"examples": [
{
"caption": "format",
"code": "printf \"hex=%x dec=%d\\n\" 255 255"
},
{
"caption": "no newline",
"code": "printf \"%s\" OK"
}
]
}