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

25 lines
583 B
JSON

{
"name": "xargs",
"section": 1,
"title": "construct argument lists and invoke utility",
"synopsis": [
"xargs [OPTION]... [OPERAND]..."
],
"description": "xargs does not spawn arbitrary /bin utilities on Bare OS. Use shell word splitting or pipelines.",
"options": [],
"keywords": [
"xargs",
"bare-os",
"coreutils",
"stub"
],
"stub": true,
"bareOsNotes": "No process fork model; see handbook ch.9.",
"examples": [
{
"caption": "workaround: shell word split",
"code": "# for f in *.txt; do grep -l foo $f; done"
}
]
}