Files
bare-operating-system/packages/bare-os-coreutils/man/pages/tee.json
T

22 lines
468 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"
}
]
}