内容来源于人民邮电出版社《Linux命令应用大词典》
讲述729个命令,1935个例子
学习Linux系统的参考书、案头书,遇到不懂的命令或命令选项一查即可
争取每天都发布内容
ls命令
使用ls命令,对于目录而言将列出其中的所有子目录与文件信息;对于文件而言将输出其文件名以及所要求的其它信息。
命令语法:
ls [选项] [目录|文件]
命令中各选项的含义如表所示。
表 ls命令选项含义
选项 |
含义 |
-a |
显示指定目录下所有子目录与文件,包括隐藏文件 |
-A |
显示指定目录下所有子目录与文件,包括隐藏文件,但不列出“.”和“..” |
-c |
配合-lt:根据ctime 排序并显示ctime |
-d |
如果参数是目录,只显示其名称而不显示其下的各文件和子目录 |
-F |
显示文件类型 |
-i |
在输出的第一列显示文件的inode号 |
-l |
以长格式来显示文件的详细信息 |
-r |
排序时保留顺序 |
-t |
根据修改时间排序 |
-s |
以块数形式显示每个文件分配的尺寸 |
-S |
根据文件大小排序 |
例:显示目录/var下文件和子目录的简单信息。
[[email protected]~]# ls /var
account crash db games lib lock mail opt run tmp yp
cache cvs empty gdm local log nis preserve spool www
例:显示/root目录下所有文件和子目录的详细信息,包括隐藏文件。
[[email protected]~]# ls -al /root
总用量216
dr-xr-x---.25 root root 4096 8月 19 01:17 .
dr-xr-xr-x.25 root root 4096 8月 19 00:58 ..
-rw-r--r--. 2 root root 6 8月 19 01:17 a
drwxr-xr-x. 2 root root 4096 8月 19 00:47 .abrt
-rw-------. 1 root root 1577 8月 18 21:46 anaconda-ks.cfg
-rw-r--r--. 2 root root 6 8月 19 01:17 b
-rw-r--r--. 1 root root 18 5月 20 2009 .bash_logout
-rw-r--r--. 1 root root 176 5月 20 2009 .bash_profile
-rw-r--r--. 1 root root 176 9月 23 2004 .bashrc
drwxr-xr-x. 3 root root 4096 8月 19 00:47 .cache
drwx------. 5 root root 4096 8月 19 00:47 .config
-rw-r--r--. 1 root root 100 9月 23 2004 .cshrc
drwx------. 3 root root 4096 8月 19 00:47 .dbus
........................(省略)
//文件名前面带有“.”的就是隐藏文件
例:显示/etc目录下的文件和子目录信息,用标记标出文件类型。
[[email protected]~]# ls -F /etc
例:以文件的最后一次访问时间(最近时间在前)对/root目录中的文件和子目录进行排序显示。
[[email protected] ~]# ls -lt /root
总用量 100
drwxr-xr-x. 2 root root 4096 8月 19 00:47 公共的
drwxr-xr-x. 2 root root 4096 8月 19 00:47 模板
drwxr-xr-x. 2 root root 4096 8月 19 00:47 视频
drwxr-xr-x. 2 root root 4096 8月 19 00:47 图片
drwxr-xr-x. 2 root root 4096 8月 19 00:47 文档
drwxr-xr-x. 2 root root 4096 8月 19 00:47 下载
drwxr-xr-x. 2 root root 4096 8月 19 00:47 音乐
drwxr-xr-x. 2 root root 4096 8月 19 00:47 桌面
-rw-------. 1 root root 1577 8月 18 21:46 anaconda-ks.cfg
-rw-r--r--. 1 root root 45641 8月 18 21:46 install.log
-rw-r--r--. 1 root root 10033 8月 18 21:41 install.log.syslog
例:以文件的大小对/root目录中的文件和子目录进行排序。
[[email protected] ~]# ls -Sl /root
总用量 100
-rw-r--r--. 1 root root 45641 8月 18 21:46 install.log
-rw-r--r--. 1 root root 10033 8月 18 21:41 install.log.syslog
drwxr-xr-x. 2 root root 4096 8月 19 00:47 公共的
drwxr-xr-x. 2 root root 4096 8月 19 00:47 模板
drwxr-xr-x. 2 root root 4096 8月 19 00:47 视频
drwxr-xr-x. 2 root root 4096 8月 19 00:47 图片
drwxr-xr-x. 2 root root 4096 8月 19 00:47 文档
drwxr-xr-x. 2 root root 4096 8月 19 00:47 下载
drwxr-xr-x. 2 root root 4096 8月 19 00:47 音乐
drwxr-xr-x. 2 root root 4096 8月 19 00:47 桌面
-rw-------. 1 root root 1577 8月 18 21:46 anaconda-ks.cfg
例:查看/root/install.log文件的inode。
[[email protected]~]# ls -i /root/install.log
6029314/root/install.log
例:查看/root/install.log文件磁盘占用量。
[[email protected]~]# ls -s /root/install.log
52 /root/install.log
//文件/root/install.log磁盘占用量为52KB