tree
1.1、tree命令简介
是什么 ?:a recursive directory listing command that produces a depth indented listing of files, which is colorized ala dircolors if the LS_COLORS environment variable is set and output is to tty.
开发语言:C
官方网站:http://mama.indstate.edu/users/ice/tree
1.2、通过包管理器安装tree
操作系统包管理器安装命令
WindowsChocolateychoco install -y tree
macOSHomeBrewbrew install tree
GNU/LinuxHomeBrewbrew install tree
aptsudo apt-get install -y tree
CentOSyumsudo yum install -y tree
dnfsudo dnf install -y tree
openSUSEzyppersudo zypper install -y tree
Alpine Linuxapksudo apk add tree

Arch Linux

ArcoLinux

Manjaro Linux

pacmansudo pacman -Syyu --noconfirm
sudo pacman -S    --noconfirm tree
Gentoo LinuxPortagesudo emerge tree
1.3、通过编译源码安装tree
1.4、tree命令

tree的使用格式:

tree [option]... [DIR]
1.4.1、--help

查看tree的简要帮助。

1.4.2、tree -L n

只显示n层目录(n为数字)。

1.4.3、tree -dirsfirst

目录显示在前,文件显示在后。

1.4.4、tree -a

显示所有文件和目录。

1.4.5、tree -d

显示目录名称而非内容。