mac终端中显示tree的命令

命令:find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'
手动alias一下,在你的.bash_profile或者.zshrc中添加:
alias tree="find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'"

或者brew install tree 安装