Mail Archives: cygwin/1998/04/15/13:12:25
Hi,
I suppose there is a bug in your bash. When I enter the following
command
echo "string" | read variable; echo $variable
there is no output. However it works under the UNIX shell scripts and
that is what I expect. It seems your bash applies the pipe statements as
own process (with own stack). The alternative command
echo "string" | ( read variable; echo $variable )
operates very well but this would force me to change already written
UNIX shell scripts.
What can I do ?
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request AT cygnus DOT com" with one line of text: "help".
- Raw text -