tail 命令從指定點開始將檔案寫到標準輸出.使用tail命令的-f選項可以方便的查閱正在改變的日誌檔案,tail -f filename會把filename裡最尾部的內容顯示在螢幕上,並且不但重新整理,使你看到最新的檔案內容.
tail[必要引數][選擇引數][檔案]
-f 迴圈讀取
-q 不顯示處理資訊
-v 顯示詳細的處理資訊
-c《數目》 顯示的位元組數
-n《行數》 顯示行數
–pid=pid 與-f合用,表示在程序id,pid死掉之後結束.
-q, –quiet, –silent 從不輸出給出檔名的首部
-s, –sleep-interval=s 與-f合用,表示在每次反覆的間隔休眠s秒
命令:
tail -n 5 log2014.log
輸出:
[root@localhost test]# tail -n 5 log2014.log
2014-09
2014-10
2014-11
2014-12
******************************[root@localhost test]#
說明:
顯示檔案最後5行內容
命令:
tail -f test.log
輸出:[1] 11891[root@localhost ~]# tail -f test.log
ping 192.168
.120
.204 (192.168
.120
.204) 56(84) bytes of data.
64 bytes from
192.168
.120
.204: icmp_seq=1 ttl=64
time=0.038 ms
64 bytes from
192.168
.120
.204: icmp_seq=2 ttl=64
time=0.036 ms
64 bytes from
192.168
.120
.204: icmp_seq=3 ttl=64
time=0.033 ms
64 bytes from
192.168
.120
.204: icmp_seq=4 ttl=64
time=0.027 ms
64 bytes from
192.168
.120
.204: icmp_seq=5 ttl=64
time=0.032 ms
64 bytes from
192.168
.120
.204: icmp_seq=6 ttl=64
time=0.026 ms
64 bytes from
192.168
.120
.204: icmp_seq=7 ttl=64
time=0.030 ms
64 bytes from
192.168
.120
.204: icmp_seq=8 ttl=64
time=0.029 ms
64 bytes from
192.168
.120
.204: icmp_seq=9 ttl=64
time=0.044 ms
64 bytes from
192.168
.120
.204: icmp_seq=10 ttl=64
time=0.033 ms
64 bytes from
192.168
.120
.204: icmp_seq=11 ttl=64
time=0.027 ms
[root@localhost ~]#
說明:
ping 192.168.120.204 > test.log & //在後台ping遠端主機。並輸出檔案到test.log;這種做法也使用於乙個以上的檔案監視。用ctrl+c來終止。
命令:
tail -n +5 log2014.log
輸出:
[root@localhost test]# cat log2014.log
2014-01
2014-02
2014-03
2014-04
2014-05
2014-06
2014-07
2014-08
2014-09
2014-10
2014-11
2014-12
******************************
[root@localhost test]# tail -n +5 log2014.log
2014-05
2014-06
2014-07
2014-08
2014-09
2014-10
2014-11
2014-12
******************************
乙個簡單的linux命令 mkdir
mkdir 命令用於建立指定名稱的目錄,要求使用者具有要建立的目錄下的讀寫許可權。mkdir option dir m,mode 模式,設定許可權 模式 類似 chmod 而不是 rwxrwxrwx 減 umask p,parents 可以是乙個路徑名稱。此時若路徑中的某些目錄尚不存在,加上此選項後...
乙個簡單的linux命令 nl
nl命令在linux系統中用來計算檔案中行號。nl 可以將輸出的檔案內容自動的加上行號!其預設的結果與 cat n 有點不太一樣,nl 可以將行號做比較多的顯示設計,包括位數與是否自動補齊 0 等等的功能。nl 選項 檔案 b 指定行號指定的方式,主要有兩種 b a 表示不論是否為空行,也同樣列出行...
乙個簡單的linux命令 touch
linux的touch命令不常用,一般在使用make的時候可能會用到,用來修改檔案時間戳,或者新建乙個不存在的檔案。命令格式 touch 選項 檔案 命令引數 a 或 time atime或 time access或 time use 只更改訪問時間。c 或 no create 不建立任何文件。d ...