Linux :: 【基础指令篇 :: 文件及目录操作:(9)】:: tree 指令:安装及简单使用;作用:递归地以树状格式列出或显示目录的内容

前言:本篇是 Linux 基本操作篇章的内容!
笔者使用的环境是基于腾讯云服务器:CentOS 7.6 64bit。


学习集:

  • C++ 入门到入土!!!学习合集
  • Linux 从命令到网络再到内核!学习合集

注:tree 指令不是自带指令需要安装:可行测试如下指令,看看是否存在指令!
若出现:-bash: tree: command not found【即:未安装(点击此处查看安装方式)】

[Mortal@VM-12-16-centos StudyingOrder_Linux]$ tree .
-bash: tree: command not found

目录索引:
1. 基本语法及功能
2. 基本使用示例
- - 2.1 展示当前目录/上级目录
- - 2.2 展示指定目录
- - 2.3 拷贝指定文件到上级目录
3. tree 命令的安装
4. 相关文章或系列推荐


1. 基本语法及功能

语法:

  • tree [指定路径]
  • 注:可以用当前目录或上级目录的简要方式作为指定路径!

功能:

  • 递归地以树状格式列出或显示目录的内容!以及提示目录数和文件数 !

2. 基本使用示例

/* 查看当前目录 */
[Mortal@VM-12-16-centos ~]$ ls
ordertest  StudyingOrder_Linux  test1  test2  test3  test_cp  test_findsome  test_mkdir  test_mv  test_tar  test_txtfile  test_zip

/* 跳转到指定目录 */
[Mortal@VM-12-16-centos ~]$ cd test_cp/destination_dir/

[Mortal@VM-12-16-centos destination_dir]$ ls
copy.txt

/* 创建目录用于测试 */
[Mortal@VM-12-16-centos destination_dir]$ mkdir -p a/aa a/aaa
[Mortal@VM-12-16-centos destination_dir]$ ls
a  copy.txt

/* 测试 tree 指令:递归展示当前目录的树状格式 */
[Mortal@VM-12-16-centos destination_dir]$ tree .
.
|-- a
|   |-- aa
|   `-- aaa
`-- copy.txt

3 directories, 1 file
[Mortal@VM-12-16-centos destination_dir]$ 

/* 测试 tree 指令:递归展示上级目录的树状格式 */
[Mortal@VM-12-16-centos destination_dir]$ tree ..
..
|-- destination_dir
|   |-- a
|   |   |-- aa
|   |   `-- aaa
|   `-- copy.txt
|-- origin_dir
|   `-- test_origin.txt
|-- origin_dir_backup
|   `-- test_origin.txt
|-- test
|   |-- a
|   |   `-- aa
|   |       `-- aaa
|   |           `-- t2.txt
|   `-- t1.txt
`-- test_backup
    |-- a
    |   `-- aa
    |       `-- aaa
    |           `-- t2.txt
    `-- t1.txt

14 directories, 7 files

3. tree 指令的安装

(1)在RHEL/CentOS 7上安装tree命令工具

/* 解决方案 */
/* 
	1. 在 root 权限下执行如下命令:【下载安装 tree】
		yum install -y tree
	2. 若提示:bash: tree: command not found,则先执行以下命令【下载安装 yum】
		yum install -y epel-release
*/

(2)在Fedora 22+ /RHEL/CentOS 8上安装tree命令工具

dnf install -y tree

(3)在Ubuntu/Debian系统上安装tree命令工具

sudo apt install tree

(4)在openSUSE系统上安装tree命令工具

sudo zypper in tree 

4. 相关文章或系列推荐

1. Linux 学习目录合集 ;


2. Linux :: 【基础指令篇 :: 文件及目录操作:(4)】:: mkdir :: 创建目录:指定路径单个目录创建及一次性创建多级目录 ;
3. Linux :: 【基础指令篇 :: 文件及目录操作:(5)】:: touch:创建普通文件、修改文件创建时间及其他基本操作;
4. Linux :: 【基础指令篇 :: 文件及目录操作:(6)】:: rmidr / rm:删除空目录、删除非空目录及删除文件指令;
5. Linux :: 【基础指令篇 :: 文件及目录操作:(7)】:: cp:指定文件或目录的拷贝及指定拷贝到指定路径(与重命名);


你可能感兴趣的:(Linux,学习,linux,服务器,学习,笔记,centos)