ls -alhとはどういう意味ですか? [コピー]

ls -alhとはどういう意味ですか? [コピー]

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) 

おすすめ記事