Oops. And a brainteaser. Re: The Hosstraders retire

Michael ODonnell michael.odonnell at comcast.net
Tue Feb 20 12:44:12 EST 2007



>xargs, specified with both -s and -n, should never fail this way:
>
>       $ find $spec -print0 | xargs --null -s $s -n $n $command
>
>for appropriate values of $s and $n.


Depending on circumstances, dramatic speedups can result from
judicious use of -l, thus:

   find $spec -print0 | xargs --null -l40 -s $s -n $n $command
 


More information about the gnhlug-discuss mailing list