>echo Hello | perl flamingo.pl
___________
/ \
| | Hello
\________, /
\/
...
Here, we can see the pipe that should be on the far right ends up at the start, possibly?
>java | perl flamingo.pl
Usage: java [-options] class [args...]
...
_
/ \
\/
/
...
Here, the text is printed before the flamingo command. Possibly due to the java command not being able to pipe?
echo;Here, we can see the pipe that should be on the far right ends up at the start, possibly?
java;Here, the text is printed before the
flamingocommand. Possibly due to thejavacommand not being able to pipe?