linux每日命令 14 less命令

2021-09-02 20:10:58 字數 4651 閱讀 2885

閱讀目錄(content)

less 工具也是對檔案或其它輸出進行分頁顯示的工具,應該說是linux正統檢視檔案內容的工具,功能極其強大。less 的用法比起 more 更加的有彈性。在 more 的時候,我們並沒有辦法向前面翻, 只能往後面看,但若使用了 less 時,就可以使用 [pageup] [pagedown] 等按鍵的功能來往前往後翻看檔案,更容易用來檢視乙個檔案的內容!除此之外,在 less 裡頭可以擁有更多的搜尋功能,不止可以向下搜,也可以向上搜。

回到頂部(go to top)

less [引數]  檔案
回到頂部(go to top)

less 與 more 類似,但使用 less 可以隨意瀏覽檔案,而 more 僅能向前移動,卻不能向後移動,而且 less 在檢視之前不會載入整個檔案。

回到頂部(go to top) 引數

描述-b

《緩衝區大小》 設定緩衝區的大小

-e當檔案顯示結束後,自動離開

-f強迫開啟特殊檔案,例如外圍裝置代號、目錄和二進位制檔案

-g-i

忽略搜尋時的大小寫

-m顯示類似more命令的百分比

-n顯示每行的行號

-o 《檔名》

將less 輸出的內容在指定檔案中儲存起來

-q不使用警告音

-s顯示連續空行為一行

-s行過長時間將超出部分捨棄

-x 《數字》

將「tab」鍵顯示為規定的數字空格

/字串:

向下搜尋「字串」的功能

?字串:

向上搜尋「字串」的功能

n:重複前乙個搜尋(與 / 或 ? 有關)

n:反向重複前乙個搜尋(與 / 或 ? 有關)

bcentos向後翻一頁(ubuntu向前翻一頁)

d向後翻半頁

h顯示幫助介面

q退出less 命令

u向前滾動半頁

y向前滾動一行

空格鍵滾動一頁

回車鍵滾動一行

[pagedown]

向下翻動一頁

[pageup]

向上翻動一頁

回到頂部(go to top)

命令:

less log1
輸出:

hc@hc-virtual-machine:~/snap$ less log1 

我是log1的第一行

我是log1的第三行

我是log1的第四行

我是log1的第五行

我是log1的第七行

log1 (end)

命令:

ps -ef |less
輸出:

uid         pid   ppid  c stime tty          time cmd

root 1 0 0 10:10 ? 00:00:03 /sbin/init splash

root 2 0 0 10:10 ? 00:00:00 [kthreadd]

root 4 2 0 10:10 ? 00:00:00 [kworker/0:0h]

root 6 2 0 10:10 ? 00:00:00 [mm_percpu_wq]

root 7 2 0 10:10 ? 00:00:00 [ksoftirqd/0]

root 8 2 0 10:10 ? 00:00:03 [rcu_sched]

root 9 2 0 10:10 ? 00:00:00 [rcu_bh]

root 10 2 0 10:10 ? 00:00:00 [migration/0]

root 11 2 0 10:10 ? 00:00:00 [watchdog/0]

root 12 2 0 10:10 ? 00:00:00 [cpuhp/0]

root 13 2 0 10:10 ? 00:00:00 [cpuhp/1]

root 14 2 0 10:10 ? 00:00:00 [watchdog/1]

root 15 2 0 10:10 ? 00:00:00 [migration/1]

root 16 2 0 10:10 ? 00:00:00 [ksoftirqd/1]

root 18 2 0 10:10 ? 00:00:00 [kworker/1:0h]

root 19 2 0 10:10 ? 00:00:00 [cpuhp/2]

root 20 2 0 10:10 ? 00:00:00 [watchdog/2]

root 21 2 0 10:10 ? 00:00:00 [migration/2]

root 22 2 0 10:10 ? 00:00:00 [ksoftirqd/2]

root 24 2 0 10:10 ? 00:00:00 [kworker/2:0h]

root 25 2 0 10:10 ? 00:00:00 [cpuhp/3]

root 26 2 0 10:10 ? 00:00:00 [watchdog/3]

:

說明:

按空格鍵或者pagedown鍵,向後翻一頁

按b(centos向後翻一頁,ubuntu向前翻一頁)

按y向前翻一行,按回車鍵向後翻一行

d 向後翻半頁,u前翻半頁

命令:

history | less
輸出:

1  sudo apt install vmware-install.pl

2 pwd

3 ls

4 pwd

5 ls

6 vmware-install.pl

7 pwd

8 ls

9 pwd

10 ls

11 cd 桌面

12 ls

13 cp vmwaretools-10.1.6-5214329.tar.gz ../

14 ls

15 cd ..

16 ls

17 tar zxvf vmwaretools-10.1.6-5214329.tar.gz

18 ls

19 cd vmware-tools-distrib/

20 sudo ./vmware-install.pl

21 sudo -su

22 sudo su

23 ls

:

命令:

less log1 log2
輸出:

hc@hc-virtual-machine:~/snap$ less log1 log2

我是log1的第一行

我是log1的第三行

我是log1的第四行

我是log1的第五行

我是log1的第七行

log1 (file 1 of 2) (end) - next: log2

說明:

輸入 :n後,切換到 下乙個檔案,log2

輸入 :p 後,切換到 上乙個檔案,log1

centos下:

ctrl + f - 向前移動一屏

ctrl + b - 向後移動一屏

ctrl + d - 向前移動半屏

ctrl + u - 向後移動半屏

ubuntu下:

ctrl + f - 向後移動一屏

ctrl + b - 向前移動一屏

ctrl + d - 向後移動半屏

ctrl + u - 向前移動半屏

centos下:

j - 向前移動一行

k - 向後移動一行

ubuntu下:

j - 向後移動一行

k - 向前移動一行

g - 移動到最後一行

g - 移動到第一行

q / zz - 退出 less 命令

v - 使用配置的編輯器編輯當前檔案

h - 顯示 less 的幫助文件

&pattern - 僅顯示匹配模式的行,而不是整個檔案

當使用 less 檢視大檔案時,可以在任何乙個位置作標記,可以通過命令導航到標有特定標記的文字位置:

ma - 使用 a 標記文字的當前位置

'a - 導航到標記 a 處

linux每日命令 14 less命令

less 工具也是對檔案或其它輸出進行分頁顯示的工具,應該說是linux正統檢視檔案內容的工具,功能極其強大。less 的用法比起 more 更加的有彈性。在 more 的時候,我們並沒有辦法向前面翻,只能往後面看,但若使用了 less 時,就可以使用 pageup pagedown 等按鍵的功能來...

linux每日命令 14 less命令

閱讀目錄 content less 工具也是對檔案或其它輸出進行分頁顯示的工具,應該說是linux正統檢視檔案內容的工具,功能極其強大。less 的用法比起 more 更加的有彈性。在 more 的時候,我們並沒有辦法向前面翻,只能往後面看,但若使用了 less 時,就可以使用 pageup pag...

linux學習筆記 less命令

空格 或者 ctrl f 前進一屏 ctrl b 後退一螢幕 回車 前進一行 string 查詢含有string字串的頁 string 同上 反向查詢 n 同向查詢 n 反向查詢 當前行號 ctrl u 檔案中向上移動半屏 ctrl d 下移動半屏 ctrl y 上移動一行 ctrl n下移動一行 ...