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

26 lines
569 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"
}
]
}