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

16 lines
444 B
JSON

{
"name": "tee",
"section": 1,
"title": "duplicate standard input",
"synopsis": ["tee [OPTION]... [OPERAND]..."],
"description": "Bare OS implementation of duplicate standard input. Full behavior is defined in packages/bare-os-coreutils/src/tee.js.",
"options": [],
"keywords": ["tee", "bare-os", "coreutils"],
"examples": [
{
"caption": "copy stdout to file",
"code": "cat x | tee copy.txt | wc -l"
}
]
}