bug-findutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: xargs -n 1 I/O unjumbling


From: Dan Jacobson
Subject: Re: xargs -n 1 I/O unjumbling
Date: Thu, 18 Aug 2005 06:34:16 +0800

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
)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]