>>>>> On Thu, 27 Sep 2007, Mike Frysinger wrote:

>> > +          | (OFS=${IFS} IFS=$'\n'; while read -r n ; do (IFS=${OFS}; 
>> > eerror "
>> > ${n}") ; done)

>> Can't you do something like "xargs -d'\n' -n1 eerror"?

> the BSD wankers would complain their xargs doesnt support -d

That's true. Then:
   sed 's/^/X/' | while read -r n; do eerror "${n#X}"; done
(The substitution can be included in the previous sed command.)

Ulrich
-- 
[EMAIL PROTECTED] mailing list

Reply via email to