Linux command tree: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 24: Line 24:
</syntaxhighlight>
</syntaxhighlight>
=Installation=
=Installation=
==Mac==


  brew install tree
  brew install tree

Revision as of 20:00, 27 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

Mac

brew install tree