このコマンドは、ファイルの2行目を表示します。
cat myfile | head -2 | tail -1
私のファイルには次のデータが含まれています。
hello
mark
this is the head line
this is the first line
this is the second line
this is the last line
上記のコマンドは、データを次のように出力します。mark
しかし、これは理解できません。ヘッド-2は最初の2行を印刷し、テール-1は最後の行を印刷するのですが、どうして2行目が印刷されるのでしょうか!! ???