Ah, better yet would be xargs to add a flag to:
Wait till receiving an EOF on stdin before executing anything.
$ xargs -n 1
a
a
b
b
c
c
$ xargs -n 1 --wait-for-eof
a
b
c
^D
a
b
c
(I discovered the need when pasting more and more URLs into
$ xargs -n 1 wwwoffle-ls
)
_
Hi!
I'm reacting to
http://lists.gnu.org/archive/html/bug-findutils/2005-02/msg00059.html.
Is the development effort spoken about in this post still going on? Can I help?
Kind regards,
Stefaan
___
Bug-findutils mailing list
Bug-findutils@gnu.org
htt