26 lines
535 B
JSON
26 lines
535 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"
|
|
}
|
|
]
|
|
}
|