In a reply to Piping a file through tail and head via tee, a strange behaviour of head
has been observed in the following construct when working with huge files:
#! /bin/bash
for i in {1..1000000} ; do echo $i ; done > /tmp/n
( tee >(sed -n '1,3p' >&3 ) < /tmp/n | tail -n2 ) 3>&1 # Correct
echo '#'
( tee >(tac | tail -n3 | tac >&3 ) < /tmp/n | tail -n2 ) 3>&1 # Correct
echo '#'
( tee >(head -n3 >&3 ) < /tmp/n | tail -n2 ) 3>&1 # Not correct!?
Output:
1
2
3
999999
1000000
#
1
2
3
999999
1000000
#
1
2
3
15504
15
Question:
Why does not the last line output the same lines as the previous two lines?