-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 と同じです。