{ "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" } ] }