Centos6.x版本最小化安装是没有安装tree命令的,需要通过yum -y install tree进行安装:
参数:SourceByrd's Weblog-https://note.t4x.org/rebuilding/tree-command-description/
-L:level 显示层级别
-a:显示所有文件
-d:只显示目录文件
-f:显示文件相对目录
-i:不使用“缩进线”,仅仅以.显示相关路径,配合f使用
-l:当目录是软连接的时候,当做目录,显示目录文件
-I:排除相关文件
-p:显示文件权限,类似ls -l
-s:显示文件大小
-h:显示文件大小,以kb、mb、gb方式
-u:显示文件夹所有者
-g:显示文件组
-D:显示文件上次修改时间mtime
--inodes:文件inodes,参考ls -i
--device:显示当前文件夹inodes
-F:附加文件机构[*:代表可运行档; /:代表目录; =:代表 socket 文件; |:代表 FIFO 文件;] 参考ls -F
-r:按照字母倒叙排列
-t:按照时间排序,参考ls -t SourceByrd's Weblog-https://note.t4x.org/rebuilding/tree-command-description/
案例:
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
[root@Test5 tmp]# tree -L 1 . ├── 1.sh ├── a ├── ab.txt [root@Test5 tmp]# tree -a #显示所有文件 . ├── 1.sh ├── a │ └── b │ └── c [root@Test5 tmp]# tree -d #只显示目录,包括软连接 . ├── a │ └── b │ └── c └── nginx -> /opt/nginx-1.10.2 [root@Test5 tmp]# tree -f #显示相对全路径 . ├── ./1.sh ├── ./a │ └── ./a/b │ └── ./a/b/c [root@Test5 tmp]# tree -fi #取消缩进线,仅显示路径,配合-f使用 . ./1.sh ./a ./a/b ./a/b/c [root@Test5 tmp]# tree -l #显示软链接里面的tree . ├── a │ └── b │ └── c ├── nginx -> /opt/nginx-1.10.2 │ ├── client │ ├── conf │ │ ├── fastcgi.conf [root@Test5 tmp]# tree -I nginx #排除了软链接nginx . ├── 1.sh ├── a │ └── b │ └── c ├── ab.txt ├── file7 ├── jnLogGlobal.log └── nginx-1.10.2.tar.gz [root@Test5 tmp]# tree -p #显示文件权限 . ├── [-rw-r--r--] 1.sh ├── [drwxr-xr-x] a [root@Test5 tmp]# tree -s #显示文件大小 . ├── [ 90] 1.sh ├── [ 4096] a [root@Test5 tmp]# tree -h #显示文件大小 . ├── [ 90] 1.sh ├── [4.0K] a [root@Test5 tmp]# tree -u #用户 . ├── [root ] 1.sh [root@Test5 tmp]# tree -g #用户组 . ├── [root ] 1.sh [root@Test5 tmp]# tree -F #参考ls -F . ├── 1.sh ├── a/ │ └── b/ [root@Test5 tmp]# tree -P fi* . ├── a │ └── b │ └── c └── file7 |
其他参数:SourceByrd's Weblog-https://note.t4x.org/rebuilding/tree-command-description/
SourceByrd's Weblog-https://note.t4x.org/rebuilding/tree-command-description/SourceByrd's Weblog-https://note.t4x.org/rebuilding/tree-command-description/--dirsfirst:先显示文件夹,然后才显示文件
-P:可以使用通配符
-n:不显示颜色
-C:显示颜色SourceByrd's Weblog-https://note.t4x.org/rebuilding/tree-command-description/