centos tree命令
2020-04-24 09:39 方斌 阅读(282) 评论(0) 编辑 收藏 举报1 使用find命令模拟出tree命令的效果,如显示当前目录的 tree 的命令:
$ find . -print | sed -e 's;[^/]*/;|;g;s;|; |;g'
2 当然你也可以写一个别名来快速执行该命令,运行如下命令,将上面这个命令写到~/.bash_profile里,以后直接运行tree命令就更方便了:
alias tree="find . -print | sed -e 's;[^/]*/;|;g;s;|; |;g'"