TIL of how to generate ASCII folder structures
POSTED ON:
TAGS: devtools
It takes input like this:
my-project
src
index.html
my-project.scss
build
index.html
my-project.css
... and transforms it into an ASCII tree diagram like this:
.
└── my-project/
├── src/
│ ├── index.html
│ └── my-project.scss
└── build/
├── index.html
└── my-project.css
REF:
https://github.com/nfriend/tree-online
Related TILs
Tagged: devtools