Linux學習之tail命令

2022-09-15 04:33:10 字數 2682 閱讀 3290

tail 命令從指定點開始將檔案寫到標準輸出.使用tail命令的-f選項可以方便的查閱正在改變的日誌檔案,tail -f filename會把filename裡最尾部的內容顯示在螢幕上,並且不但重新整理,使你看到最新的檔案內容. 

1.命令格式;

tail[必要引數][選擇引數][檔案]   

2.命令功能:

用於顯示指定檔案末尾內容,不指定檔案時,作為輸入資訊進行處理。常用檢視日誌檔案。

3.命令引數:

-f 迴圈讀取

-q 不顯示處理資訊

-v 顯示詳細的處理資訊

-c《數目》 顯示的位元組數

-n《行數》 顯示行數

--pid=pid 與-f合用,表示在程序id,pid死掉之後結束. 

-q, --quiet, --silent 從不輸出給出檔名的首部 

-s, --sleep-interval=s 與-f合用,表示在每次反覆的間隔休眠s秒 

4.使用例項:

例項1:顯示檔案末尾內容

命令:

tail -n 5 log2014.log

輸出:

1 [root@localhost test]# tail -n 5

log2014.log 23

2014-0945

2014-1067

2014-1189

2014-12

1011 ******************************[root@localhost test]#

說明:顯示檔案最後5行內容

例項2:迴圈檢視檔案內容

命令:

tail -f test.log

輸出:

1 [root@localhost ~]# ping 192.168.120.204 > test.log &

2 [1] 11891[root@localhost ~]# tail -f test.log

3 ping 192.168.120.204 (192.168.120.204) 56(84

) bytes of data.

464 bytes from

192.168.120.204: icmp_seq=1 ttl=64 time=0.038ms5

64 bytes from

192.168.120.204: icmp_seq=2 ttl=64 time=0.036ms6

64 bytes from

192.168.120.204: icmp_seq=3 ttl=64 time=0.033ms7

64 bytes from

192.168.120.204: icmp_seq=4 ttl=64 time=0.027ms8

64 bytes from

192.168.120.204: icmp_seq=5 ttl=64 time=0.032ms9

64 bytes from

192.168.120.204: icmp_seq=6 ttl=64 time=0.026

ms10

64 bytes from

192.168.120.204: icmp_seq=7 ttl=64 time=0.030

ms11

64 bytes from

192.168.120.204: icmp_seq=8 ttl=64 time=0.029

ms12

64 bytes from

192.168.120.204: icmp_seq=9 ttl=64 time=0.044

ms13

64 bytes from

192.168.120.204: icmp_seq=10 ttl=64 time=0.033

ms14

64 bytes from

192.168.120.204: icmp_seq=11 ttl=64 time=0.027

ms15 [root@localhost ~]#

說明:ping 192.168.120.204 > test.log & //在後台ping遠端主機。並輸出檔案到test.log;這種做法也使用於乙個以上的檔案監視。用ctrl+c來終止。 

例項3:從第5行開始顯示檔案

命令:tail -n +5 log2014.log

輸出:

1

[root@localhost test]# cat log2014.log

22014-01

32014-02

42014-03

52014-04

62014-05

72014-06

82014-07

92014-08

102014-09

112014-10

122014-11

132014-12

14 ******************************

15 [root@localhost test]# tail -n +5

log2014.log

162014-05

172014-06

182014-07

192014-08

202014-09

212014-10

222014-11

232014-12

24 ******************************

linux命令之 tail學習

在螢幕上顯示指定檔案的末尾若干行 tail file 顯示檔案file的最後10行 tail n 20 file 顯示檔案file的內容,從第20行至檔案末尾 tail c 10 file 顯示檔案file的最後10個字元 tail 25 mail.log 顯示 mail.log 最後的 25 行 ...

Linux高階之 tail 命令

tail命令從指定點開始將檔案寫到標準輸出.使用tail命令的 f選項可以方便的查閱正在改變的日誌檔案,tail f filename會把filename裡最尾部的內容顯示在螢幕上,並且不但重新整理,使你看到最新的檔案內容.1 命令格式 tail 必要引數 選擇引數 檔案 2 命令功能 用於顯示指定...

linux 學習筆記 tail 命令

tail f n 100 catalina.out 含義 從檔案尾部監視catalina.out檔案 主要看尾部100行 tail f n 100 catalina.out nohup.out 也可以指定輸出檔案的路徑 進入後台 輸出內容到指定檔案覆蓋原有檔案內容 輸出內容不覆蓋而是追加內容到原有檔...