Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: pipelines and &&
- X-seq: zsh-users 1550
- From: "Bart Schaefer" <schaefer@xxxxxxxxxxxxxxxx>
- To: matthi@xxxxxxxxxxxxxxxxxxxxxxxxxxx (Matthias Kopfermann), zsh-users@xxxxxxxxxxxxxxx
- Subject: Re: pipelines and &&
- Date: Tue, 26 May 1998 12:38:52 -0700
- In-reply-to: <m0yeO2G-001N1WC@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
- References: <m0yeO2G-001N1WC@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
On May 26, 8:01pm, Matthias Kopfermann wrote:
} Subject: Re: pipelines and &&
}
} disappointing! i thought that was a unique zsh-feature which did
} not work because i was doing something wrong.
What, exactly, would you expect it to do?
Your original example was
ls | wc && | less
The closest thing I can imagine to what that might mean is equivalent to
coproc cat
ls >&p | wc && less <&p
which doesn't quite work right because the coproc doesn't exit after
"ls" finishes writing to it, but gives you the idea.
--
Bart Schaefer Brass Lantern Enterprises
http://www.well.com/user/barts http://www.brasslantern.com
Messages sorted by:
Reverse Date,
Date,
Thread,
Author