饥人谷技术博客

Mac终端使用命令行列出漂亮的目录结构

2017-07-02  本文已影响0人  柏龙

使用 homebrew 安装 tree 命令行

常用命令

➜  demo tree -L 1
.
├── app
├── index.html
├── node_modules
└── package.json
2 directories, 2 files
➜  demo tree -I "node_modules"
.
├── app
│   └── index.js
├── dist
│   └── bundle.js
├── index.html
└── package.json
2 directories, 4 files

tree --help 帮助说明

上一篇下一篇

猜你喜欢

热点阅读