常用组合
ls -lhtr
命令详解
ls -l:显示文件详细信息
# ls -l
总用量 4
-rw-------. 1 root root 1456 4月 23 23:29 anaconda-ks.cfg
第一列:文件权限
第二列:有多少文件使用相同的iNode
第三列:所有者
第四列:所属组
第五列:文件大小,单位为byte
第六列:文件创建时间
第七列:文件名
ls -i:显示文件iNode号
# ls -i anaconda-ks.cfg
71 anaconda-ks.cfg
ls -lh :以更人性化的显示文件大小
-rw-------. 1 root root 1.5K 4月 23 23:29 anaconda-ks.cfg
ls -la :显示隐藏文件
# ls -al
总用量 40
dr-xr-x---. 5 root root 207 6月 3 09:40 .
dr-xr-xr-x. 18 root root 236 6月 2 19:08 ..
-rw-------. 1 root root 1456 4月 23 23:29 anaconda-ks.cfg
-rw-------. 1 root root 4322 6月 3 00:34 .bash_history
-rw-r--r--. 1 root root 18 12月 29 2013 .bash_logout
-rw-r--r--. 1 root root 176 12月 29 2013 .bash_profile
-rw-r--r--. 1 root root 176 12月 29 2013 .bashrc
drwx------. 3 root root 17 4月 27 16:02 .cache
-rw-r--r--. 1 root root 100 12月 29 2013 .cshrc
-rw-r--r--. 1 root root 49 6月 3 00:15 .gitconfig
drwxr-----. 3 root root 19 4月 27 15:55 .pki
drwx------. 2 root root 80 6月 3 00:09 .ssh
-rw-r--r--. 1 root root 129 12月 29 2013 .tcshrc
-rw-------. 1 root root 3919 6月 3 09:40 .viminfo
详细信息iNode号5的含义
dr-xr-x—. 5 root root 207 6月 3 09:40 .
[root@suning-02 ~]# ls -i /root
71 anaconda-ks.cfg
[root@suning-02 ~]# ls -i .
71 anaconda-ks.cfg
[root@suning-02 ~]# ls -i .cache/..
71 anaconda-ks.cfg
[root@suning-02 ~]# ls -i .pki/..
71 anaconda-ks.cfg
[root@suning-02 ~]# ls -i .ssh/..
71 anaconda-ks.cfg
ls -t:以时间的顺序排序
dr-xr-x---. 5 root root 207 6月 3 09:40 .
-rw-------. 1 root root 3919 6月 3 09:40 .viminfo
-rw-------. 1 root root 4322 6月 3 00:34 .bash_history
-rw-r--r--. 1 root root 49 6月 3 00:15 .gitconfig
drwx------. 2 root root 80 6月 3 00:09 .ssh
dr-xr-xr-x. 18 root root 236 6月 2 19:08 ..
drwx------. 3 root root 17 4月 27 16:02 .cache
drwxr-----. 3 root root 19 4月 27 15:55 .pki
-rw-------. 1 root root 1456 4月 23 23:29 anaconda-ks.cfg
-rw-r--r--. 1 root root 18 12月 29 2013 .bash_logout
-rw-r--r--. 1 root root 176 12月 29 2013 .bash_profile
-rw-r--r--. 1 root root 176 12月 29 2013 .bashrc
-rw-r--r--. 1 root root 100 12月 29 2013 .cshrc
-rw-r--r--. 1 root root 129 12月 29 2013 .tcshrc
ls -d:显示目录本身详细信息
dr-xr-x---. 5 root root 207 6月 3 09:40 /root