美文网首页
mac终端中显示tree的命令

mac终端中显示tree的命令

作者: 七里小晴天 | 来源:发表于2016-04-14 15:38 被阅读20次

    命令:

    find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'
    

    然后手动alias一下,在你的.bash_profile中添加:

    alias tree="find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'"
    

    相关文章

      网友评论

          本文标题:mac终端中显示tree的命令

          本文链接:https://www.haomeiwen.com/subject/cavglttx.html