Command-Line

ls 中的 -alhF 標誌是什麼?

  • May 28, 2015

裡面的-alhF標誌是ls什麼?我在手冊頁中找不到它。

來自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。

引用自:https://unix.stackexchange.com/questions/206142