有关应用程序命令的语法、用法和信息,建议参考哪些资源?我目前正在尝试在command help
(假设command
有help
)或之间做出决定man command
。
答案1
没有标准;必须使用man command
、info command | less
、command -h
、command --help
、 (呃,Java)、四处寻找自述文件、altagoobingleduckgoing 等的某种组合command -help
,具体取决于命令以及供应商编写文档的能力(OpenBSD 在这方面非常好,其他方面也很好)也许是的)。
警告!尝试随机标志root
是一个非常糟糕的主意,因为我必须修复某些 Linux 管理员运行的 Solaris 机器上的主机名hostname -f
,从而将所有 Solaris 主机名设置为-f
.
另一种选择是在包或端口中挖掘doc
此类类型的目录,这将因相关端口或包系统而异:
$ port contents nasm | egrep 'man|doc'
/opt/local/share/man/man1/ldrdf.1.gz
/opt/local/share/man/man1/nasm.1.gz
...
$ rpm -ql mutt | grep manual
/usr/share/doc/mutt-1.5.21/manual.html
/usr/share/doc/mutt-1.5.21/manual.txt
(ETC)