我希望这是提出这个问题的正确场所。所以基本上,我正在梳理一些比较常用的终端命令,我发现很难记住短格式标志和长格式标志。
例如,
ls -a
对我来说比记住要难得多
ls --all
显然,对于一个标志来说,这是微不足道的,但考虑到可通过shell执行的程序数量以及每个程序的可用标志,将这些标记提交到内存真的非常非常困难。
但是,当我搜索手册页时,例如,
man ls
文档不显示长格式标志。例如,这就是我得到的
-1 (The numeric digit ``one''.) Force output to be one entry per
line. This is the default when output is not to a terminal.
-A List all entries except for . and ... Always set for the super-
user.
-a Include directory entries whose names begin with a dot (.).
我正在寻找类似这样的网页:
http://manpages.ubuntu.com/manpages/xenial/en/man1/ls.1.html
-a, --all
do not ignore entries starting with .
-A, --almost-all
do not list implied . and ..
--author
with -l, print the author of each file
但可以离线访问。
我正在使用MacOS,并通过终端运行man - 是否有任何替代手册可以显示长格式标志?如果有人能指出我正确的方向,我真的很感激。
谢谢!