GIVEN:
Bash command line (Terminal 1):
> mkfifo pipo
> cat pipo
Bash command line (Terminal 2):
> echo -e "Hello World\nHi" > pipo
RESULT:
The bash in (Terminal 1) prints:
Hello World
Hi
and aborts.
QUESTION:
How can I achieve that it does not abort, but allows to send another echo through pipo
?