「Linux」ファイルの先頭指定行数を表示する方法

2021年3月18日

書式
head -n ファイル名
オプション一覧
-n, –lines=[-]NUM print the first NUM lines instead of the first 10;
with the leading '-', print all but the last
NUM lines of each file
使用例
# head -5 /var/log/messages
# head -n 5 /var/log/messages

Linux

Posted by arkgame