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
- Host: GitHub
- URL: https://github.com/leptos-null/treelike
- Owner: leptos-null
- License: cc-by-4.0
- Created: 2020-03-14T20:33:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-14T21:47:33.000Z (over 5 years ago)
- Last Synced: 2025-01-19T17:24:14.534Z (5 months ago)
- Topics: html, tree
- Language: Objective-C
- Size: 11.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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
```