Piping output from multiple statements on single line should behave similar to
how Unix shells handle redirection.
------------------------------------------------------------------------------------------------------------------
Key: FELIX-1356
URL: https://issues.apache.org/jira/browse/FELIX-1356
Project: Felix
Issue Type: Improvement
Reporter: Hiram Chirino
Use compare the command and result of these unix shell statements:
$ echo hello ; echo hello | echo world
hello
world
With the gogo equivalent:
$ echo hello ; echo hello | echo world
world
Seems like in the gogo case the pipe is applied to both statements while in the
unix case, the pipe is only applied to the statement the pipe is defined in.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.