in reply to Re^2: Receiving Standard Input/Piped
in thread Receiving Standard Input/Piped
Actually xargs can-call/calls the program with multiple args. You can also specify the number of args using -n switch
people prefer xargs because it avoids the Argument list too long problem. Also the -exec is not as efficient as xargs because it calls the prog each time it finds a file while xargs knows how big is OK and calls it accordingly! i.e. fewer calls to the prog
cheers
SK
|
|---|