檢視檔案內容的特殊方法
相信最基本的cat和less你已經很熟悉了,如果有特殊的要求呢:
1. 如果你只想看檔案的前5行,可以使用head命令,如:
head -5 /etc/passwd
2. 如果你想檢視檔案的後10行,可以使用tail命令,如:
tail -10 /etc/passwd
tail -f /var/log/messages
引數-f使tail不停地去讀最新的內容,這樣有實時監視的效果,當你在ppp撥號的過程中用它豈不是很方便!
3. 檢視檔案中間一段,你可以使用sed命令,如:
sed -n '5,10p' /etc/passwd
這樣你就可以只檢視檔案的第5行到第10行。
檢視binlog檔案的方法
使用mysqlbinlog檢視binlog a 提取指定的binlog日誌 grep insert 40019 set session.max insert delayed threads 0 insert into tb values 2,jack b 提取指定position位置的binlog日...
檢視控制檔案內容的方法
1 方法1 oracle rhfour test strings control01.ctl 2 方法2 connected to oracle database 10g enterprise edition release 10.2.0.1.0 production with the partit...
linux tail 檢視日誌檔案方法
tail 命令從指定點開始將檔案寫到標準輸出.使用tail命令的 f選項可以方便的查閱正在改變的日誌檔案,tail f filename會把filename裡最尾部的內容顯示在螢幕上,並且不但重新整理,使你看到最新的檔案內容.1 命令格式 tail 必要引數 選擇引數 檔案 2 命令功能 用於顯示指...