Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hidekuno/tree-viewer
Tree viewer tool(classic implements)
https://github.com/hidekuno/tree-viewer
cplusplus-11
Last synced: 18 days ago
JSON representation
Tree viewer tool(classic implements)
- Host: GitHub
- URL: https://github.com/hidekuno/tree-viewer
- Owner: hidekuno
- Created: 2019-10-04T00:56:10.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-04T00:49:42.000Z (about 2 years ago)
- Last Synced: 2023-03-02T18:05:47.065Z (over 1 year ago)
- Topics: cplusplus-11
- Language: C++
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Tree view tool
=================## Overview
- Implemented a simple tool on the C++.
- Display text data with hierarchical names in a tree.## Development
| Item | Ver. |
|--------|--------|
| OS | Ubuntu 18.04.5 LTS |
| GCC | 9.3.0|
| CPU | Intel(R) Core(TM) i7-10510U CPU @ 1.80GHz|## Installation of development tools
ubuntu
```
sudo apt-get update
sudo apt-get install g++ autoconf make git
sudo apt-get install libsparsehash-dev
```
mac
```
brew install autoconf
brew install google-sparsehash
```## Build
```
git clone https://github.com/hidekuno/tree-viewer.git
cd tree-viewer
autoconf
./configure
make
```## Run(ex.)
```
./newsgroup.py| ./treeview -l
``````
ls -R .git|grep ':$' |sed -e 's/.$//' | ./treeview -d / -m
```