ref: 10a96be1b13426e85d22b4c7457484b94af95e6c
dir: /rc/bin/xargs/
#!/bin/rc
fn usage {
echo usage: $0 [-n num] program [arguments]
exit usage
}
rfork e
ifs='
'
nargs=1
while(~ $1 -*) {
switch($1) {
case -n
nargs=$2
shift 2
case *
echo bla
usage
}
}
while(x = `{read -n $nargs})
$* $x
if(! ~ $#x 0)
$* $x