Tree 명령어Last updated UnknownMAC os폴더 구조를 시각적으로 보기 쉽도록 트리 형태로 보여주는 명령어# 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 # ReferencesLinux see directory tree structure using tree command