Linux command tree: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Linux")
 
Line 1: Line 1:
=Internal=
=Internal=
* [[Linux#Commands|Linux]]
* [[Linux#Commands|Linux]]
=Overview=
Recursively descends a directory, producing something like this:
<syntaxhighlight lang='text'>
a
├── Chart.yaml
├── charts
│   └── b
│      ├── Chart.yaml
│      ├── charts
│      │   └── c
│      │      ├── Chart.yaml
│      │      ├── templates
│      │      │   └── pod.yaml
│      │      └── values.yaml
│      ├── templates
│      │   └── pod.yaml
│      └── values.yaml
├── templates
│   └── pod.yaml
└── values.yaml
</syntaxhighlight>
=Installation=
brew install tree

Revision as of 22:34, 15 December 2019

Internal

Overview

Recursively descends a directory, producing something like this:

a
├── Chart.yaml
├── charts
│   └── b
│       ├── Chart.yaml
│       ├── charts
│       │   └── c
│       │       ├── Chart.yaml
│       │       ├── templates
│       │       │   └── pod.yaml
│       │       └── values.yaml
│       ├── templates
│       │   └── pod.yaml
│       └── values.yaml
├── templates
│   └── pod.yaml
└── values.yaml


Installation

brew install tree