Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Process substitution bug?
- X-seq: zsh-users 3496
- From: Peter Stephenson <pws@xxxxxxx>
- To: zsh-users@xxxxxxxxxxxxxx (Zsh users list)
- Subject: Re: Process substitution bug?
- Date: Tue, 31 Oct 2000 17:17:33 +0000
- In-reply-to: "Your message of Tue, 31 Oct 2000 17:51:46 +0100." <20001031175146.A756@xxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxxxxxx; run by ezmlm
> With zsh 3.1.9 under Solaris 2.7:
>
> vin:~> rup >(hilight 1) <17:49:
> 12
> /dev/fd/12: RPC: Unknown host
> zsh: exit 1 rup >(hilight 1)
>
> What does this mean?
It means you've forgotten the extra `>'. >(hilight 1) produces a filename
into which you can write, which will serve as output for the process
`highlight 1'. You need:
rup > >(hilight 1)
--
Peter Stephenson <pws@xxxxxxx> Software Engineer
Cambridge Silicon Radio, Unit 300, Science Park, Milton Road,
Cambridge, CB4 0XL, UK Tel: +44 (0)1223 392070
Messages sorted by:
Reverse Date,
Date,
Thread,
Author