Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: Process substitution bug?



> 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