-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와 같습니다.