ls
linuxlsは、カレントディレクトリ内のファイルを表示する。
[user@centos7 ~]$ ls
images text.txt index.html
option
-a | 「.」を含んだ全てのファイルを表示。 |
---|---|
-l | ファイルの詳細を表示する。 ファイル名,ファイル・タイプ,パーミッション,ハード・リンクの数,オーナー名,グループ名,バイト・サイズ,タイム・スタンプを表示。 ファイルタイプの一番左側の文字の意味。 「-:ファイル」「d:ディレクトリ」「l:シンボリックリンク」 |
-r | リストを逆順に表示。 |
-t | 更新時刻順に表示。 |
-F | ファイルタイプを示す記号情報を表示 「*:実行可能ファイル」「/:ディレクトリ」「@:シンボリックリンク」 |
-S | ファイルサイズの大きい順に表示 |
-R | サブディレクトリ内も含め表示 |
–full-time | タイムスタンプ詳細を表示 |
example of use
[user@centos7 ~]$ ls -al
合計 44
drwx------ 17 user group 4096 4月 11 14:00 .
drwxr-xr-x. 4 user group 39 2月 26 13:51 ..
-rw------- 1 user group 208 2月 26 19:06 .bash_history
-rw------- 1 user group 18 2月 26 13:51 .bash_logout
-rw------- 1 user group 193 2月 26 13:51 .bash_profile
-rw------- 1 user group 231 2月 26 13:51 .bashrc
-rwxrw-rw- 1 user group 1 2月 26 14:00 text.txt
-rwxrw-rw- 1 user group 1 4月 26 14:00 index.html