Man有沒有辦法只為命令的指定選項查看
有沒有辦法只為命令的指定選項查看man
文件
如果我想知道 的含義
wget -b
,我看手冊man wget
,然後搜尋-b
選項。-b --background Go to background immediately after startup. If no output file is specified via the -o, output is redirected to wget-log.
我想通過類似的命令獲得結果
man wget -b
。(當然這不起作用。)有沒有類似的方法可以使它成為可能?
如果您
less
用作 man 的尋呼機,您可以嘗試LESS="+/^\s+-b" man wget
在哪裡
+``less
打開後執行下一個操作的符號/
命令開始搜尋^\s+-b``-b
正則表達式從行首匹配因此,如果您願意,可以為 shell 安排適當的功能
function rman { #USAGE: rman programm.name option.to.search (with "-" symbol) LESS="+/^\s+$2" man "$1" }
並將其添加到
~/.bashrc
例如。
執行
man command
時可以按/
再輸入純文字進行搜尋。例如,鍵入它會跳轉到文本中/-b
的第一個實例。-b