ls命令
ls命令
ls命令用来显示目标列表,ls命令的输出信息可以进行彩色加亮显示,以分区不同类型的文件
-a:显示所有档案及目录(ls内定将档案名或目录名称为“.”的视为影藏,不会列出);
-A:显示除影藏文件“.”和“..”以外的所有文件列表;
-C:多列显示输出结果。这是默认选项;
-l:与“-C”选项功能相反,所有输出信息用单列格式输出,不输出为多列;
-F:在每个输出项后追加文件的类型标识符,具体含义:“*”表示具有可执行权限的普通文件,“/”表示目录,“@”表示符号链接,“|”表示命令管道FIFO,“=”表示sockets套接字。当文件为普通文件时,不输出任何标识符;
-b:将文件中的不可输出的字符以反斜线“”加字符编码的方式输出; -c:与“-lt”选项连用时,按照文件状态时间排序输出目录内容,排序的依据是文件的索引节点中的ctime字段。与“-l”选项连用时,则排序的一句是文件的状态改变时间; -d:仅显示目录名,而不显示目录下的内容列表。显示符号链接文件本身,而不显示其所指向的目录列表;
-f:此参数的效果和同时指定“aU”参数相同,并关闭“lst”参数的效果;
-i:显示文件索引节点号(inode)。一个索引节点代表一个文件; --file-type:与“-F”选项的功能相同,但是不显示“*”;
-k:以KB(千字节)为单位显示文件大小;
-l:以长格式显示目录下的内容列表。输出的信息从左到右依次包括文件名,文件类型、权限模式、硬连接数、所有者、组、文件大小和文件的最后修改时间等;
-m:用“,”号区隔每个文件和目录的名称;
-n:以用户识别码和群组识别码替代其名称;
-r:以文件名反序排列并输出目录内容列表; -s:显示文件和目录的大小,以区块为单位;
-t:用文件和目录的更改时间排序;
-L:如果遇到性质为符号链接的文件或目录,直接列出该链接所指向的原始文件或目录;
-R:递归处理,将指定目录下的所有文件及子目录一并处理; --full-time:列出完整的日期与时间; --color[=WHEN]:使用不同的颜色高亮显示不同类型的。
[root@alex ~]# ls -l 显示详细信息
total 8
drwxr-xr-x 2 root root 4096 Oct 16 14:01 c
drwxr-xr-x 2 root root 4096 Oct 18 08:46 m
[root@alex ~]# ls 列出文件
c m
[root@alex ~]# ls -lh m 查看文件大小
[root@alex ~]# ls -la
total 56
dr-xr-x---. 7 root root 4096 Oct 18 08:46 . 当前目录 也就是目录本身
dr-xr-xr-x. 18 root root 4096 Oct 16 12:59 ..
-rw------- 1 root root 353 Oct 20 05:30 .bash_history
-rw-r--r--. 1 root root 18 Dec 29 2013 .bash_logout
-rw-r--r--. 1 root root 176 Dec 29 2013 .bash_profile
-rw-r--r--. 1 root root 176 Dec 29 2013 .bashrc
drwxr-xr-x 2 root root 4096 Oct 16 14:01 c
drwx------ 3 root root 4096 Aug 17 07:47 .cache
-rw-r--r--. 1 root root 100 Dec 29 2013 .cshrc
drwxr-xr-x 2 root root 4096 Oct 18 08:46 m
drwxr-xr-x 2 root root 4096 Aug 17 07:48 .pip
-rw-r--r-- 1 root root 64 Aug 17 07:48 .pydistutils.cfg
drwx------ 2 root root 4096 Oct 21 02:08 .ssh
-rw-r--r--. 1 root root 129 Dec 29 2013 .tcshrc
[root@alex ~]# ls -a 列出隐藏文件信息
. .bash_history .bash_profile c .cshrc .pip .ssh
.. .bash_logout .bashrc .cache m .pydistutils.cfg .tcshrc
[root@alex ~]# ls -i -l 列出 inode号和文件信息
total 8
1310898 drwxr-xr-x 2 root root 4096 Oct 16 14:01 c
1313106 drwxr-xr-x 2 root root 4096 Oct 18 08:46 m
[root@alex ~]# ls -m 水平输出列表
c, m
[root@alex ~]# ls -lt 最近修改的文件显示在最上面。
total 8
drwxr-xr-x 2 root root 4096 Oct 18 08:46 m
drwxr-xr-x 2 root root 4096 Oct 16 14:01 c
[root@alex ~]# ls -R 显示递归文件
.:
c m
./c:
./m:
[root@alex ~]# ls -lh 可读文件详细信息
total 8.0K
drwxr-xr-x 2 root root 4.0K Oct 16 14:01 c
drwxr-xr-x 2 root root 4.0K Oct 18 08:46 m
[root@alex ~]# ls -l -i -a -t -h -d 常用 的
本文转自 amenging 51CTO博客,原文链接:http://blog.51cto.com/11335852/1974794