Graphical List of Directories using Tree

Use this to return a list of just the folders of current directory

Sample Usage

tree -L 1

Sample Output

├── Desktop
├── Documents
├── Downloads
├── Music
├── Pictures
├── Public
├── Templates
└── Videos

Example of using "prune" to show ONLY files container pom.xml files.

Refer: https://blog.mruckman.com/2019/10/tree-list-of-pom-xml-files/

tree --prune -P "pom\.xml"