bashビルトイン機能だけで headを実現する
% cat test 1 2 3 4 5 6 7 8 9 % echo "$(echo "$(<test)" | for i in {1..3}; do read line; echo $line ; done)" # head -3 相当 1 2 3
% cat test 1 2 3 4 5 6 7 8 9 % echo "$(echo "$(<test)" | for i in {1..3}; do read line; echo $line ; done)" # head -3 相当 1 2 3