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

20 lines
545 B
JSON

{
"name": "cut",
"section": 1,
"title": "cut out selected fields of each line",
"synopsis": ["cut [OPTION]... [OPERAND]..."],
"description": "Bare OS implementation of cut out selected fields of each line. Full behavior is defined in packages/bare-os-coreutils/src/cut.js.",
"options": [],
"keywords": ["cut", "bare-os", "coreutils"],
"examples": [
{
"caption": "fields by delimiter",
"code": "cut -d: -f1,3 /etc/passwd"
},
{
"caption": "characters",
"code": "cut -c1-16 file.txt"
}
]
}