From: Alexandre R. <ara...@gm...> - 2005-12-07 16:22:47
|
No help doing this all within xargs, but.... On 12/7/05, Tylman Ule <t....@gm...> wrote: > Alternatively, you could use "xargs". I often use it to speed up > similar scenarios: feed one program with many ops to carry out at > once, instead of restarting it over and over again. However, you run > into a problem with "xml sel", because the input file has to be > either on STDIN or the *last* argument on the command line. xargs -i (or xargs --replace) allow the substituted argument to be inside the call string. Regards, Alex. |