Skip to content
/ tree Public

A recursive directory listing program that produces a depth indented listing of files.

License

Notifications You must be signed in to change notification settings

steynvl/tree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tree

A recursive directory listing program that produces a depth indented listing of files.

Installing

Preliminaries

It is assumed that you have CMake installed on your system.

Building

$ git clone https://github.com/steynvl/tree
$ cd tree
$ mkdir bin && cd bin
$ cmake ..
$ make
$ ./tree --help

If you want to install the program then you can run the following

$ sudo make install
$ tree --help

Example

$ cd ~/inferrer
$ tree
.
├─── inferrer
│    ├─── oracle
│    │    ├─── active_oracle.py
│    │    ├─── passive_oracle.py
│    │    ├─── __init__.py
│    │    └─── oracle.py
│    ├─── algorithms
│    │    ├─── active
│    │    │    ├─── nlstar
│    │    │    │    ├─── nlstar.py
│    │    │    │    ├─── observation_table.py
│    │    │    │    ├─── __init__.py
│    │    │    │    └─── row.py
│    │    │    ├─── lstar
│    │    │    │    ├─── __init__.py
│    │    │    │    └─── lstar.py
│    │    │    ├─── __init__.py
│    │    │    └─── active_learner.py
│    │    ├─── passive
│    │    │    ├─── gold
│    │    │    │    ├─── __init__.py
│    │    │    │    └─── gold.py
│    │    │    ├─── rpni
│    │    │    │    ├─── __init__.py
│    │    │    │    └─── rpni.py
│    │    │    ├─── passive_learner.py
│    │    │    └─── __init__.py
│    │    ├─── __init__.py
│    │    └─── algorithm.py
│    ├─── logger
│    │    ├─── logger.py
│    │    ├─── __init__.py
│    │    ├─── logger_manager.py
│    │    └─── singleton.py
│    ├─── automaton
│    │    ├─── fsa.py
│    │    ├─── __init__.py
│    │    ├─── state.py
│    │    ├─── nfa.py
│    │    └─── dfa.py
│    ├─── utils
│    │    ├─── observation_table.py
│    │    ├─── __init__.py
│    │    └─── utils.py
│    ├─── inferrer.py
│    └─── __init__.py
├─── inferrer_cli.py
├─── README.md
├─── Pipfile
├─── Pipfile.lock
└─── .gitignore

12 directories, 39 files

Resources

This program was inspired by the Linux tree command.

About

A recursive directory listing program that produces a depth indented listing of files.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published