Linuxコマンド学習(7)tailコマンド詳細

1453 ワード

tail後ろの行を取り出します
tailコマンドは、主にファイルの内容の後ろの行を取り出すために使用されます.
使用方法
[root@study ~]# tail [-n number]   
     :
-n :     ,         
-f :              ,     [ctrl]-c    tail   

[root@study ~]# tail /etc/man_db.conf
#       ,       !        20  ,     :
[root@study ~]# tail -n 20 /etc/man_db.conf
   :     /etc/man_db.conf   ,     100 (   100 )[root@study ~]# tail -n +100 /etc/man_db.conf
   :    /var/log/messages   
[root@study ~]# tail -f /var/log/messages
#     [crtl]-c      tail       !

このtailの使い方はheadの使い方とあまり似ていませんが、後ろの行を表示しているだけです.デフォルトでは10行も表示されますが、10行以外を表示するには-n numberのオプションを追加します.