# tree

`tree` is a recursive directory listing command that produces a depth indented listing of files.

### Installation <a href="#installation" id="installation"></a>

To install the latest version, use homebrew:

```
$ brew install tree
```

### Usage <a href="#usage" id="usage"></a>

Running `tree` will produce output like this:

To limit the recursion you can pass an `-L` flag and specify the maximum depth `tree` will use when searching.

```
$ tree -L 1
```
