Linux

man 命令:有沒有辦法知道命令輸出的含義>

  • July 9, 2014

有沒有辦法知道命令輸出的含義?

給出的例子:如果我輸入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

您可以使用infocommand 來了解有關 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.
    ........

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