명령 출력의 의미를 알 수 있는 방법이 있습니까?
주어진 예: 를 입력하면 ls -l
다음과 같은 출력이 표시됩니다.
[root@localhost junk]# ls -l
total 8
-rw-r--r-- 1 root root 1862 2012-08-25 16:20 a
-rw-r--r-- 1 root root 0 2012-08-25 15:41 a.c
-rw-r--r-- 1 root root 1907 2012-08-25 16:18 b
-rw-r--r--
이제 이 모든 필드(예 : 1862) 가 무엇을 나타내는지 알고 싶습니다 .
를 사용하여 이를 수행할 수 있는 방법이 있습니까 man
?
답변1
command를 사용하여 info
coreutils의 모든 명령에 대한 자세한 내용을 알아볼 수 있습니다.
info ls
옵션을 설명하는 부분입니다 -l
.
`-l'
`--format=long'
`--format=verbose'
In addition to the name of each file, print the file type, file
mode bits, number of hard links, owner name, group name, size, and
timestamp (*note Formatting file timestamps::), normally the
modification time. Print question marks for information that
cannot be determined.
........