码迷,mamicode.com
首页 > 其他好文 > 详细

tree 以树行形结构显示目录下的内容

时间:2018-03-20 19:39:39      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:epo   awk   中文   bashrc   base   dir   abc   ash   logout   

1. 命令功能

  tree中文意思“树”,以树形结构显示目录内容。、

2. 语法格式

  tree  [option]   [directory]

  tree  选项   目录

3. 使用范例

当最小化安装linux时,是没有安装tree命令的。

范例1 : 不带参数执行tree,显示/bin下内容

[root@localhost home]#

[root@localhost home]# cd /bin

[root@localhost bin]# tree

.

├── arch

├── awk -> gawk

├── basename

├── bash

├── cat

范例2:显示/home/cxf目录下全部目录树

[cxf@localhost ~]$ tree -a

.

├── abc

├── .bash_history

├── .bash_logout

├── .bash_profile

├── .bashrc

├── .lesshst

├── old

│   ├── a

│   ├── b

范例3:只列出目录的目录树

[cxf@localhost ~]$ tree -d

.

├── old

│   ├── a

│   ├── b

│   ├── c

范例4:显示文件的全路径

[cxf@localhost ~]$ tree -f

.

├── ./abc

└── ./test

    ├── ./test/dir1

    ├── ./test/dir2

    ├── ./test/dir3

    ├── ./test/dir4

    └── ./test/dir5

 

6 directories, 1 file

[cxf@localhost ~]$ tree -f /home/cxf

/home/cxf

├── /home/cxf/abc

└── /home/cxf/test

    ├── /home/cxf/test/dir1

    ├── /home/cxf/test/dir2

    ├── /home/cxf/test/dir3

    ├── /home/cxf/test/dir4

    └── /home/cxf/test/dir5

 

6 directories, 1 file

范例5:显示2层目录树

[cxf@localhost ~]$ tree -L 2

.

├── abc

└── test

    ├── dir1

    ├── dir2

    ├── dir3

    ├── dir4

    └── dir5

 

6 directories, 1 file

[cxf@localhost ~]$ tree -L 2 --noreport

.

├── abc

└── test

    ├── dir1

    ├── dir2

    ├── dir3

    ├── dir4

└── dir5

 

tree 以树行形结构显示目录下的内容

标签:epo   awk   中文   bashrc   base   dir   abc   ash   logout   

原文地址:https://www.cnblogs.com/joechu/p/8611479.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!