https://github.com/hidekuno/tree-viewer
Tree viewer tool(classic implements)
https://github.com/hidekuno/tree-viewer
cplusplus-11
Last synced: over 1 year 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-11-10T04:00:27.000Z (over 2 years ago)
- Last Synced: 2025-02-13T09:38:57.781Z (over 1 year ago)
- Topics: cplusplus-11
- Language: C++
- Homepage:
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: newsgroup.py
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
```