# tree

# 介绍

快速查看目录结构,可用于markdown文档的书写

# 安装

npm i tree -g

# 使用

列举当前根目录结构

tree

列举两级目录结构

tree -l 2 

忽略文件夹

tree -l 2 --ignore 'node_modules'
tree -l 2 --ignore 'node_modules/, .git/, .gitignore'

example

├── README.md
├── core
|  ├── babel
|  ├── redux
|  └── webpack
├── npm.md
├── package.json
└── yarn.lock

# 参考

Github tree (opens new window)

陕ICP备20004732号-3