ls命令使用说明

1、ls命令概述

ls命令用于显示文件目录列表,和Windows系统下DOS命令dir类似。当执行ls命令时,默认显示的只有非隐藏文件的文件名、以文件名进行排序及文件名代表的颜色显示。当不加参数时,默认列出当前目录的列表信息。
说明:在linux下,文件名以点.开头表示该文件为隐藏文件,如.bashrc。

2、命令语法:
ls 【选项】 【目录名】 #注:【】中的内容为非必选项

3、命令选项:

-a:显示所有档案及目录(ls内定将档案名或目录名称为“.”的视为影藏,不会列出);

-A:显示除影藏文件“.”和“..”以外的所有文件列表;

-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:显示文件和目录的大小,以区块为单位;

-S:以文件大小排序

-t:用文件和目录的更改时间排序;

-L:如果遇到性质为符号链接的文件或目录,直接列出该链接所指向的原始文件或目录;

-R:递归处理,将指定目录下的所有文件及子目录一并处理;

--full-time:列出完整的日期与时间;

--color[=WHEN]:使用不同的颜色高亮显示不同类型的。

4、命令示例

4.1显示目录下的文件(不包含隐藏文件)

1 [root@localhost ~]# ls
2 1.txt  2.txt  3.txt  a  anaconda-ks.cfg  b  c  d

4.2 -a:显示目录下的文件,包含隐藏文件

1 [root@localhost ~]# ls -a
2 .   1.txt  3.txt  anaconda-ks.cfg  .bash_history  .bash_profile  c       d
3 ..  2.txt  a      b                .bash_logout   .bashrc        .cshrc  .tcshrc

4.3 -A:显示除影藏文件“.”和“..”以外的所有文件列表

1 [root@localhost ~]# ls -A
2 1.txt  3.txt  anaconda-ks.cfg  .bash_history  .bash_profile  c       d
3 2.txt  a      b                .bash_logout   .bashrc        .cshrc  .tcshrc

4.4 -l:列出长数据串,显示出文件的属性与权限等数据信息

 1 [root@localhost ~]# ls -l
 2 总用量 4
 3 -rw-r--r--. 1 root root    0 10月  9 09:08 1.txt
 4 -rw-r--r--. 1 root root    0 10月  9 09:08 2.txt
 5 -rw-r--r--. 1 root root    0 10月  9 09:08 3.txt
 6 drwxr-xr-x. 2 root root   20 10月  9 09:19 a
 7 -rw-------. 1 root root 1434 10月  8 10:05 anaconda-ks.cfg
 8 drwxr-xr-x. 2 root root    6 10月  9 09:16 b
 9 drwxr-xr-x. 2 root root    6 10月  9 09:16 c
10 drwxr-xr-x. 2 root root    6 10月  9 09:16 d

4.5 -F:在每个输出项后追加文件的类型标识符

1 [root@localhost ~]# ls -F
2 1.txt  2.txt  3.txt  a/  anaconda-ks.cfg  b/  c/  d/

4.6 -d:仅显示当前目录名,而不显示目录下的内容列表

1 [root@localhost ~]# ls -d /home/
2 /home/

4.7 -h:将文件内容大小以K、M、GB等易读的方式显示

 1 [root@localhost ~]# ls -hl
 2 总用量 4.0K
 3 -rw-r--r--. 1 root root    0 10月  9 09:08 1.txt
 4 -rw-r--r--. 1 root root    0 10月  9 09:08 2.txt
 5 -rw-r--r--. 1 root root    0 10月  9 09:08 3.txt
 6 drwxr-xr-x. 2 root root   20 10月  9 09:19 a
 7 -rw-------. 1 root root 1.5K 10月  8 10:05 anaconda-ks.cfg
 8 drwxr-xr-x. 2 root root    6 10月  9 09:16 b
 9 drwxr-xr-x. 2 root root    6 10月  9 09:16 c
10 drwxr-xr-x. 2 root root    6 10月  9 09:16 d

4.8 -n:以用户识别码和群组识别码替代其名称(GID、UID)

 1 [root@localhost ~]# ls -n
 2 总用量 4
 3 -rw-r--r--. 1 0 0    0 10月  9 09:08 1.txt
 4 -rw-r--r--. 1 0 0    0 10月  9 09:08 2.txt
 5 -rw-r--r--. 1 0 0    0 10月  9 09:08 3.txt
 6 drwxr-xr-x. 2 0 0   20 10月  9 09:19 a
 7 -rw-------. 1 0 0 1434 10月  8 10:05 anaconda-ks.cfg
 8 drwxr-xr-x. 2 0 0    6 10月  9 09:16 b
 9 drwxr-xr-x. 2 0 0    6 10月  9 09:16 c
10 drwxr-xr-x. 2 0 0    6 10月  9 09:16 d

4.9 -S:以文件大小排序

 1 [root@localhost ~]# ls -Sl
 2 总用量 4
 3 -rw-------. 1 root root 1434 10月  8 10:05 anaconda-ks.cfg
 4 drwxr-xr-x. 2 root root   20 10月  9 09:19 a
 5 drwxr-xr-x. 2 root root    6 10月  9 09:16 b
 6 drwxr-xr-x. 2 root root    6 10月  9 09:16 c
 7 drwxr-xr-x. 2 root root    6 10月  9 09:16 d
 8 -rw-r--r--. 1 root root    0 10月  9 09:08 1.txt
 9 -rw-r--r--. 1 root root    0 10月  9 09:08 2.txt
10 -rw-r--r--. 1 root root    0 10月  9 09:08 3.txt

4.10 -t:用文件和目录的更改时间排序

 1 [root@localhost ~]# ls -tl
 2 总用量 4
 3 drwxr-xr-x. 2 root root   20 10月  9 09:19 a
 4 drwxr-xr-x. 2 root root    6 10月  9 09:16 b
 5 drwxr-xr-x. 2 root root    6 10月  9 09:16 c
 6 drwxr-xr-x. 2 root root    6 10月  9 09:16 d
 7 -rw-r--r--. 1 root root    0 10月  9 09:08 1.txt
 8 -rw-r--r--. 1 root root    0 10月  9 09:08 2.txt
 9 -rw-r--r--. 1 root root    0 10月  9 09:08 3.txt
10 -rw-------. 1 root root 1434 10月  8 10:05 anaconda-ks.cfg

4.11 -r:以文件名反序排列并输出目录内容列表

 1 [root@localhost ~]# ls -rtl
 2 总用量 4
 3 -rw-------. 1 root root 1434 10月  8 10:05 anaconda-ks.cfg
 4 -rw-r--r--. 1 root root    0 10月  9 09:08 3.txt
 5 -rw-r--r--. 1 root root    0 10月  9 09:08 2.txt
 6 -rw-r--r--. 1 root root    0 10月  9 09:08 1.txt
 7 drwxr-xr-x. 2 root root    6 10月  9 09:16 d
 8 drwxr-xr-x. 2 root root    6 10月  9 09:16 c
 9 drwxr-xr-x. 2 root root    6 10月  9 09:16 b
10 drwxr-xr-x. 2 root root   20 10月  9 09:19 a
posted @ 2019-10-09 13:43  网络小白-lzg  阅读(1415)  评论(0编辑  收藏  举报