Released as 20170322 ('TRAPPIST-1')

This commit is contained in:
Ole Tange 2017-03-27 22:56:22 +02:00
parent 3d9baf9275
commit 86615dac7e

View file

@ -272,11 +272,12 @@ sub pipe_tee_setup {
exec "tee",@fifos; exec "tee",@fifos;
} }
# cat t1 | grep 1 # Make cats for each fifo
# cat t2 | grep 2 # cat t1 | grep 1
# cat t3 | grep 3 # cat t2 | grep 2
# cat t4 | grep 4 # cat t3 | grep 3
# cat t5 | grep 5 # cat t4 | grep 4
# cat t5 | grep 5
# Remove the tmpfifo as soon as it is open # Remove the tmpfifo as soon as it is open
@Global::cat_prepends = map { "(rm $_;cat) < $_" } @fifos; @Global::cat_prepends = map { "(rm $_;cat) < $_" } @fifos;
} }