manコマンド:コマンド出力の意味を知る方法はありますか>

manコマンド:コマンド出力の意味を知る方法はありますか>

コマンド出力の意味を知る方法はありますか?

与えられた例:を入力すると、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 を使用すると、infocoreutils のすべてのコマンドの詳細を確認できます。

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.
     ........

おすすめ記事