Greg Wooledge (12020-05-14):
> There are two main ways to operate on files in bulk:
> 
>   find ... -exec something {} +
> 
>   find ... -print0 | xargs -0 something
> 
> Pick one.  Learn how they both work, so you know which one is most
> appropriate in any given situation.

Oh, I guess

./some_tool > /tmp/list
vim /tmp/list
xargs -a /tmp/list command

is not something that is possible, then?

The question was about calling the command, not generating the list.
Anything about generating the list, was and is a waste of time. Which is
why it will probably be my last mail on this.

-- 
  Nicolas George

Attachment: signature.asc
Description: PGP signature

Reply via email to