有没有办法使用 gnome-do 在帮助 GUI 中启动一些手册页?或者我可以采用其他一些双击方法?
我可以打开帮助,然后使用Ctrl+L打开man:find——我可以让它更快吗?
yelp man:find
如果您希望查找的命令与不同部分中的命令共享名称,请在命令后面的括号中指定哪个部分,并将整个参数括在引号中以避免按字面意思读取括号:
yelp man:printf # shell command: search defaulted to section 1
yelp 'man:printf(3)' # library call: search for printf in section 3
yelp man:printf(3) # bash: syntax error near unexpected token `('
yelp 'man:exit(2)' # system calls to terminal process
yelp 'man:exit(3)' # library call to do the same
Run Code Online (Sandbox Code Playgroud)