ls 中的 -alhF 标志是什么?

ls 中的 -alhF 标志是什么?

-alhF国旗是什么ls?我在 中找不到它手册页

答案1

man ls

   -a, --all
          do not ignore entries starting with .

   -F, --classify
          append indicator (one of */=>@|) to entries

   -h, --human-readable
          with -l, print sizes in human readable format (e.g., 1K 234M 2G)

   -l     use a long listing format

该命令ls -alhF相当于ls -a -l -h -F

像这样组合命令行参数的能力是由 POSIX 定义的。

不需要参数的选项可以在连字符之后分组,因此,例如,-lst 相当于 -t -l -s。

相关内容