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

Re: Redirection and Variables



Nikolai Weibull wrote:
> Well, the script is run like
> 
> url-extract <mail
>
> Anyway, the solution is to run
> 
> exec </dev/tty
> 
> before running $EDITOR, or is there perhaps a better one?

You could pass the file "mail" as an argument to url-extract, then only
redirect from it internally for the chunk which needs it.  That avoids
any dependence on /dev/tty.  Remember you can do things like:

  {
    # stuff with mail as input
  } <mail

  # stuff with normal input

without having to create subshells.

-- 
Peter Stephenson <pws@xxxxxxx>                  Software Engineer
CSR Ltd., Science Park, Milton Road,
Cambridge, CB4 0WH, UK                          Tel: +44 (0)1223 692070


**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.

This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.

www.mimesweeper.com
**********************************************************************



Messages sorted by: Reverse Date, Date, Thread, Author