Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
coproc eperiments
- X-seq: zsh-users 9202
- From: Meino Christian Cramer <Meino.Cramer@xxxxxx>
- To: zsh-users@xxxxxxxxxx
- Subject: coproc eperiments
- Date: Fri, 29 Jul 2005 19:23:45 +0200 (CEST)
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
Hi,
I am currenlty experimenting with the coproc command.
If I am doing the "hello world"-version of coproc:
coproc bc
noglob echo 3*6 >&p
read a <&p; echo $a
Everthing is working fine.
But if I am doing:
coproc bc
rxvt zsh &
( and then in the new shell
noglob echo 3*6 >&p
Bad file descriptor
As I think to know (*VERY* carefully) beside other things the
filedescriptors of a parent process are inherited to the child
process.
Why is the zsh started by rxvt started by the first zsh not able to
use &>p ?
keep zshing!
Meino
Messages sorted by:
Reverse Date,
Date,
Thread,
Author