🪴 Daily gardening

Search

Search IconIcon to open search

Tree 명령어

Last updated Unknown

# Install

# MacOS (Homebrew)

1
brew install tree

# Linux (RHEL / CentOS / Fedora / Rocky / Alma Linux)

1
2
3
yum install tree  
## CentOS/RHEL 8.x and Fedora user try the dnf command ##  
dnf install tree

# Linux (Debian / Mint / Ubuntu Linux)

1
sudo apt-get install tree

# How to use

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
tree .

➜  new-poetry-repository tree
.
├── README.md
├── new_poetry_repository
│   └── __init__.py
├── pyproject.toml
└── tests
    └── __init__.py

# References