我见过有人ls -alh
在Linux终端中使用。但是,当我看到手册时,我没有看到-alh
(即当我输入时man ls
)。
为什么我的说明书上没有呢?有人可以解释它的作用吗?
答案1
ls -alh
是相同的ls -a -l -h
。
多个短选项可以这样组合。
以下是这些选项的含义man ls
:
-a, --all
do not ignore entries starting with .
-l
use a long listing format
-h, --human-readable
with -l, print sizes in human readable format (e.g., 1K 234M 2G)
答案2
-h
代表人类可读。
正如评论中提到的,您可以简单地组合参数,如: -alh
。顺序无关紧要。
从man ls
:
-h, --human-readable
with -l and/or -s, print human readable sizes (e.g., 1K 234M 2G)