linux 如何顯示乙個檔案的某幾行(中間幾行)
【一】從第3000行開始,顯示1000行。即顯示3000~3999行
cat filename | tail -n +3000 | head -n 1000【二】顯示1000行到3000行
cat filename| head -n 3000 | tail -n +1000注意兩種方法的順序。
分解:tail -n 1000:顯示最後1000行
tail -n +1000:從1000行開始顯示,顯示1000行以後的
head -n 1000:顯示前面1000行
【三】用sed命令
sed -n 『6,10p』 filename這樣你就可以只檢視檔案的第6行到第10行。
【四】用grep命令
grep -c 5 foo filename 顯示file檔案中匹配foo字串那行以及上下5行
grep -b 5 foo filename 顯示foo及前5行
grep -a 5 foo filename 顯示foo及後5行
Linux 檢視檔案行數,第幾行至第幾行
進入檔案 vi test.txt 顯示行號 為shift 進入命令模式 set nu 跳轉到第幾行 20 跳轉到20行 跳轉後游標顯示在20行 擷取檢視第5行到第6行 寫法1 cat test.txt n tail n 5 head n 2 寫法2 cat test.txt n head n 6 t...
在linux中怎麼檢視錯誤日誌
cat或者 tail f命令 日 志 文 件 說 明 var log message 系統啟動後的資訊和錯誤日誌,是red hat linux中最常用的日誌之一 var log secure 與安全相關的日誌資訊 var log maillog 與郵件相關的日誌資訊 var log cron 與定時...
linux怎麼檢視程序?
linux檢視程序的方法 1 使用 ps aux 命令來檢視,能以簡單列表的形式顯示出程序資訊 2 使用 ps elf 命令來檢視 3 使用 top 命令來檢視 4 使用 pstree aup 命令來檢視。本教程操作環境 linux5.9.8系統 本文適用於所有品牌的電腦。linux檢視程序的方法 ...