Man

ls -alh 是什麼意思?

  • July 8, 2016

我已經看到人們ls -alh在 Linux 終端中使用。但是,當我看到手冊時,我看不到-alh(即當我鍵入時man ls)。

為什麼我的說明書裡沒有?有人可以解釋它的作用嗎?

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) 

-h代表人類可讀

如評論中所述,您可以簡單地組合參數,例如: -alh。順序無關緊要。

來自man ls

  -h, --human-readable
         with -l and/or -s, print human readable sizes (e.g., 1K 234M 2G)

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