This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

B19: reading from a pipe


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@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]