Answers:
也许您想拥有一些包装函数,可直接跳至内置函数:
man -P "less +/\ \ \ pushd" bash
-P
告诉man少使用传呼机(可能是大多数系统的默认值),但直接将搜索传递给它。您需要在搜索字符串之前添加一些空格,以跳过文本中的匹配,并转到命令的说明。
为了方便起见,请在其中创建一个函数并将其放入您的~/.bashrc
:
function manbash {
man -P "less +/\ \ \ $1" bash
}
并像这样使用它manbash pushd
。
另一种可能性是使用内置的bash help
:
$ help pushd
pushd: pushd [-n] [+N | -N | dir]
Add directories to stack.
Adds a directory to the top of the directory stack, or rotates
the stack, making the new top of the stack the current working
directory. With no arguments, exchanges the top two directories.
Options:
[...]
help
在写答案的时候发现自己,然后想到包装函数的好名字...嗯,救命!好的,让我们先检查是否我们将覆盖某些现有功能-etvoilà– ;)
会man bash-builtins
更有用吗?另外,您可以通过点击/
并输入搜索词来在手册页中进行搜索。
help
命令-完美,谢谢。为什么man builtins
页面不建议我不知道!