linux中的more命令的詳細(xì)解釋
linxu下的more命令是干什么用的呢?下面由學(xué)習(xí)啦小編為大家整理了linux的more命令的詳細(xì)解釋的相關(guān)知識,希望對大家有幫助!
一、linux中的more命令的詳細(xì)解釋
Linux more 命令類似 cat ,不過會以一頁一頁的形式顯示,更方便使用者逐頁閱讀,而最基本的指令就是按空白鍵(space)就往下一頁顯示,按 b 鍵就會往回(back)一頁顯示,而且還有搜尋字串的功能(與 vi 相似),使用中的說明文件,請按 h 。
語法
more [-dlfpcsu] [-num] [+/pattern] [+linenum] [fileNames..]
參數(shù):
-num 一次顯示的行數(shù)
-d 提示使用者,在畫面下方顯示 [Press space to continue, 'q' to quit.] ,如果使用者按錯鍵,則會顯示 [Press 'h' for instructions.] 而不是 '嗶' 聲
-l 取消遇見特殊字元 ^L(送紙字元)時會暫停的功能
-f 計算行數(shù)時,以實際上的行數(shù),而非自動換行過后的行數(shù)(有些單行字?jǐn)?shù)太長的會被擴(kuò)展為兩行或兩行以上)
-p 不以卷動的方式顯示每一頁,而是先清除螢?zāi)缓笤亠@示內(nèi)容
-c 跟 -p 相似,不同的是先顯示內(nèi)容再清除其他舊資料
-s 當(dāng)遇到有連續(xù)兩行以上的空白行,就代換為一行的空白行
-u 不顯示下引號 (根據(jù)環(huán)境變數(shù) TERM 指定的 terminal 而有所不同)
+/pattern 在每個文檔顯示前搜尋該字串(pattern),然后從該字串之后開始顯示
+num 從第 num 行開始顯示
fileNames 欲顯示內(nèi)容的文檔,可為復(fù)數(shù)個數(shù)
二、Linux中的more命令使用實例
實例1:顯示文件中從第3行起的內(nèi)容
命令:
more +3 log2012.log
輸出:
復(fù)制代碼代碼如下:
[root@localhost test]# cat log2012.log
2012-01
2012-02
2012-03
2012-04-day1
2012-04-day2
2012-04-day3</p> <p>======[root@localhost test]# more +3 log2012.log
2012-03
2012-04-day1
2012-04-day2
2012-04-day3</p> <p>======[root@localhost test]#
實例2:從文件中查找第一個出現(xiàn)"day3"字符串的行,并從該處前兩行開始顯示輸出
命令:
more +/day3 log2012.log
輸出:
復(fù)制代碼代碼如下:
[root@localhost test]# more +/day3 log2012.log
...skipping
2012-04-day1
2012-04-day2
2012-04-day3
2012-05
2012-05-day1</p> <p>======[root@localhost test]#
實例3:設(shè)定每屏顯示行數(shù)
命令:
more -5 log2012.log
輸出:
復(fù)制代碼代碼如下:
[root@localhost test]# more -5 log2012.log
2012-01
2012-02
2012-03
2012-04-day1
2012-04-day2
說明:
最下面顯示了該屏展示的內(nèi)容占文件總行數(shù)的比例,按 Ctrl+F 或者 空格鍵 將會顯示下一屏5條內(nèi)容,百分比也會跟著變化。
實例4:列一個目錄下的文件,由于內(nèi)容太多,我們應(yīng)該學(xué)會用more來分頁顯示。這得和管道 | 結(jié)合起來
命令:
ls -l | more -5
輸出:
復(fù)制代碼代碼如下:
[root@localhost test]# ls -l | more -5
總計 36
-rw-r--r-- 1 root root 308 11-01 16:49 log2012.log
-rw-r--r-- 1 root root 33 10-28 16:54 log2013.log
-rw-r--r-- 1 root root 127 10-28 16:51 log2014.log
lrwxrwxrwx 1 root root 7 10-28 15:18 log_link.log -> log.log
-rw-r--r-- 1 root root 25 10-28 17:02 log.log
-rw-r--r-- 1 root root 37 10-28 17:07 log.txt
drwxr-xr-x 6 root root 4096 10-27 01:58 scf
drwxrwxrwx 2 root root 4096 10-28 14:47 test3
drwxrwxrwx 2 root root 4096 10-28 14:47 test4
說明:
每頁顯示5個文件信息,按 Ctrl+F 或者 空格鍵 將會顯示下5條文件信息。
三、Linux中的more常用操作命令
Enter 向下n行,需要定義。默認(rèn)為1行
Ctrl+F 向下滾動一屏
空格鍵 向下滾動一屏
Ctrl+B 返回上一屏
= 輸出當(dāng)前行的行號
?。篺 輸出文件名和當(dāng)前行的行號
V 調(diào)用vi編輯器
!命令 調(diào)用Shell,并執(zhí)行命令
q 退出more