Linux command tree: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 23: | Line 23: | ||
└── values.yaml | └── values.yaml | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=Installation= | =Installation= | ||
brew install tree | 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