有个需求,即想表达一个目录结构,但又不想截图用图片的方式。
有些同学可能在一些技术博客中看到这样的表达:
blog
├── 2014
│ ├── 07
│ │ ├── 1.html
│ │ └── 2.html
│ └── 08
└── archives
└── index.html
如何做到呢?
安装
安装工具tree
- Mac OS X
brew install tree
- Ubuntu
sudo apt-get install tree
使用
tree ./blog/
网友评论