linux-命令-ls

假如想象 提交于 2020-04-01 06:34:53

一、命令介绍:

    ls命令是linux常用的命令之一。ls用来打印当前目录的文件清单或指定目录的文件清单,也可以查看到文件的基本权限和隐藏文件。

二、命令格式:

    ls [OPTION]... [FILE]...

三、命令参数:
    
    -a, --all
        列出目录下的所有文件,包括隐藏文件(以 . 开头的文件,但 . 表示当前目录 .. 表示上一级目录)
    -c  
        配合  -lt:根据 ctime 访问时间进行排序(-t 修改时间排序 -l 显示文件详细内容)(ctime访问时间、mtime修改时间、atime状态时间)
    -d, --directory
        将目录像文件一样显示,而不显示目录下的文件
    -h, --human-readable
        以容易理解的格式列出文件的大小(搭配 -l 使用)
    -H, –-dereference-command-line 
        列出目录中符号链接的真正文件位置
    -i, –-inode 
        打印出每个文件的 inode (索引号)
    -k, -–block-size=1K
        以 k 字节的形式表示文件的大小
    -l
        以长格式显示文件(显示文件的详细信息:权限(-:文件类型 ---:用户权限 ---:用户组权限 ---:其他用户权限) 硬链接数或目录子目录数 所属用户 所属组 大小 日期 文件名)(ll 相当于 ls -l)
    -L, -–dereference    
        显示链接文件对象的信息,而非链接文件的信息
    -F
        显示所有文件并在目录文件名后面加“/”
    -m 
        所有文件以逗号分隔
    -r, --reverse 
        以反序排序
    -R, --recursive
        打印文件的同时内出目录的子目录及文件
    -s, --size
        以块为大小为单位列出所有文件的大小
    -S 
        根据文件大小排序
    -t 
        以文件修改时间排序    
    -u 
        根据访问时间排序
        配合:-lt 显示访问时间并按照访问时间排序
        配合:-l 显示访问时间并按照文件名称排序
    -U
        不进行任何排序
    -w, –width=COLS 
        指定屏幕宽度而不使用目前的数值
    -X 
        根据扩展名排序
    -1 
        每行只列出一个文件
    .*
        字符匹配
    --version 
        显示版本信息
    --help
        显示帮助信息
    --color=auto
        自动以颜色显示目录和文件
        系统默认添加:
1
2
3
[root@test etc]# which ls
alias ls='ls --color=auto'
    /bin/ls
1
2
3
4
5
6
颜色的含义:   
1). 灰色-->其他文件       
2). 蓝色-->目录   
3). 绿色-->可执行文件   
4). 红色-->压缩文件   
5). 浅蓝色-->链接文件

四、常用实例:

    例一:显示当前目录下的所有文件包括目录及子目录。

1
2
3
4
5
6
7
8
9
[root@test etc]# ls -lR
./xdg/autostart:
total 4
-rw-r--r--. 1 root root 173 Nov 23  2013 restorecond.desktop
 
./yum:
total 16
drwxr-xr-x. 2 root root 4096 Feb 22  2013 pluginconf.d
drwxr-xr-x. 2 root root 4096 Feb 22  2013 protected.d 

      
    
    例二:显示当前目录所有文件并列出详细信息,大小,最新的文件排在最后。

1
2
3
4
5
6
7
8
[root@test etc]# ll -rth
----------   1 root root  639 Oct 17 23:07 shadow
drwxr-xr-x.  2 root root 4.0K Oct 18 22:00 cron.daily
-rw-r--r--   1 root root  15K Oct 18 22:00 ld.so.cache
drwxr-xr-x.  7 root root 4.0K Oct 19 21:43 sysconfig
-rw-r--r--   1 root root  221 Oct 31 18:31 mtab
-rw-r--r--.  1 root root   80 Oct 31 18:31 resolv.conf.save
-rw-r--r--.  1 root root  104 Oct 31 18:31 resolv.conf

    例三:计算当前目录下的文件和目录数。

1
2
3
4
[root@test etc]# ll ./ | grep "^-" | wc -l
75
[root@test etc]# ll ./ | grep "^d" | wc -l
60

    例四:列出当前目录下的所有文件包括子目录下的文件和隐藏文件的绝对路径。

1
2
3
4
5
6
7
8
9
10
[root@test etc]#  find $PWD | xargs ls -ld
-rw-r--r--.  1 root root     183 Nov 23  2013 /etc/sysconfig/udev
-rw-r--r--.  1 root root    1150 Nov 23  2013 /etc/sysctl.conf
lrwxrwxrwx.  1 root root      14 Jul 13 19:52 /etc/system-release -> centos-release
-rw-r--r--.  1 root root      25 Nov 27  2013 /etc/system-release-cpe
drwxr-xr-x.  2 root root    4096 Aug 18  2010 /etc/terminfo
drwxr-xr-x.  4 root root    4096 Jul 13 19:52 /etc/udev
drwxr-xr-x.  2 root root    4096 Nov 23  2013 /etc/udev/makedev.d
drwxr-xr-x.  2 root root    4096 Jul 13 19:56 /etc/udev/rules.d
-rw-r--r--.  1 root root     316 Nov 22  2013 /etc/udev/rules.d/60-raw.rules

    例五:指定输出文件的日期格式和时间格式。

1
2
3
4
5
6
7
8
9
10
11
12
13
日期格式:-ctl --time-style=long-iso
[root@test etc]# ls -ctl --time-style=long-iso
-rw-r--r--.  1 root root    794 2016-07-13 19:51 csh.login
-rw-r--r--.  1 root root   1602 2016-07-13 19:51 csh.cshrc
-rw-r--r--.  1 root root   2681 2016-07-13 19:51 bashrc
-rw-r--r--.  1 root root   1512 2016-07-13 19:51 aliases
 
时间格式:-tl --time-style=full-iso
[root@test etc]# ls -tl --time-style=full-iso
-rw-r--r--.  1 root root   6455 2010-01-12 21:28:22.000000000 +0800 protocols
-rw-------.  1 root root    122 2010-01-12 21:28:22.000000000 +0800 securetty
-rw-r--r--.  1 root root    801 2009-09-08 05:02:53.000000000 +0800 mke2fs.conf
-rw-r--r--.  1 root root    662 2007-08-29 15:19:36.000000000 +0800 logrotate.conf
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!