私が見たように、このようなコマンドは
tail -n +5 a b
出力を次の形式で印刷します。
==>a<==
contents of a from line 5 to $EOF (including line 5)
==>b<==
contents of b from line 5 to $EOF (including line 5)
後で指定された行に必要なものだけを印刷する方法(または他のコマンド)はありますか?つまり:
contents of a from line 5 to $EOF (including line 5)
contents of b from line 5 to $EOF (including line 5)
ベストアンサー1
自動オプションを使用します。
tail -q -n +5 a b