Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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)

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
```