An open API service indexing awesome lists of open source software.

https://github.com/leptos-null/treelike

A tree(1) like program with modified HTML generation
https://github.com/leptos-null/treelike

html tree

Last synced: 4 months ago
JSON representation

A tree(1) like program with modified HTML generation

Awesome Lists containing this project

README

        

## treelike

A simple version of `tree(1)` that fit my uses more closely.
The HTML generation only creates references for files, or for directories that contain an `index.html`, and doesn't show any index files directly.

Sample output:

```txt
.
├── README.md
├── src
│ ├── TLNamedNode.h
│ ├── TLNamedNode.m
│ └── main.m
└── treelike.xcodeproj
├── project.pbxproj
└── project.xcworkspace
├── contents.xcworkspacedata
└── xcshareddata
└── IDEWorkspaceChecks.plist
```

Sample output with `--html`:

```html
.

├── README.md

├── src

│   ├── TLNamedNode.h

│   ├── TLNamedNode.m

│   └── main.m

└── treelike.xcodeproj

    ├── project.pbxproj

    └── project.xcworkspace

        ├── contents.xcworkspacedata

        └── xcshareddata

            └── IDEWorkspaceChecks.plist

```