MacOS上使用tree命令

作者: LuckyBugGo | 来源:发表于2019-01-30 18:02 被阅读0次

    先确保安装了Homebrew
    以下命令安装Homebrew

    /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
    

    安装tree命令

    brew install tree
    

    效果

    (base) xxx$ tree
    .
    ├── djangoStudy
    │   ├── __init__.py
    │   ├── settings.py
    │   ├── urls.py
    │   └── wsgi.py
    └── manage.py
    
    1 directory, 5 files
    

    相关文章

      网友评论

        本文标题:MacOS上使用tree命令

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