NAME
xargs – construct argument list and execute |
SYNOPSIS
xargs [ –n number ] [ –p maxprocs ] cmd [ arg ... ] |
DESCRIPTION
Xargs reads number (default 10) lines from standard input and
runs the given cmd with those lines as arguments. This is repeated
until standard input is exhausted.
Options are as follows: |
EXAMPLE
|
SOURCE
/sys/src/cmd/xargs.c |
HISTORY
Xargs was implemented from scratch for 9front (August, 2011). |