如何安装命令tree
使用 yum install -y tree 进行安装即可
语法:tree 选项 参数
例如:tree /tmp 会列出/tmp目录下所有内容
[root@JSH-01 ~]# tree /tmp
/tmp
├── mysql.sock
├── systemd-private-1a3e9976b48345bfaf96e75ce6ecc31f-httpd.service-BDCdcy
│ └── tmp
└── systemd-private-1a3e9976b48345bfaf96e75ce6ecc31f-vmtoolsd.service-PlgMkB
└── tmp
└── vmware-root
5 directories, 1 file
使用 man tree 查看 tree 的帮助文档
tree -L n 其中选项-L 手动指定目录深度,n为深度)当目录下内容较多时,为了更好的查看,通常仅需要列出2级目录即可。
例如查看 /boot 目录下的2级目录
[root@JSH-01 ~]# tree -L 2 /boot
/boot
├── config-3.10.0-514.el7.x86_64
├── grub
│ └── splash.xpm.gz
├── grub2
│ ├── device.map
│ ├── fonts
│ ├── grub.cfg
│ ├── grubenv
│ ├── i386-pc
│ ├── locale
│ └── themes
├── initramfs-0-rescue-16b3e1f1592341f8abd834add3b42bf5.img
├── initramfs-3.10.0-514.el7.x86_64.img
├── initramfs-3.10.0-514.el7.x86_64kdump.img
├── initrd-plymouth.img
├── symvers-3.10.0-514.el7.x86_64.gz
├── System.map-3.10.0-514.el7.x86_64
├── vmlinuz-0-rescue-16b3e1f1592341f8abd834add3b42bf5
└── vmlinuz-3.10.0-514.el7.x86_64
6 directories, 13 files
原文:http://blog.51cto.com/13551941/2060255