Mac没有自带tree命令,需要自己安装,有两种安装方法
- 用find命令模拟tree命令效果
- mac下默认是没有 tree命令的,不过我们可以使用find命令模拟出tree命令的效果,如显示当前目录的 tree 的命令
find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'
- 写一个别名来快速执行该命令,运行如下命令,将上面这个命令写到~/.bash_profile里,以后直接运行tree命令就更方便了
alias tree="find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'"
- 用brew安装tree命令
在终端输入下面指令
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install))"
- 安装tree
brew install tree