728x90

tree는 소스 구조를 트리 형태로 보여주는 명령어입니다.
Mac에서는 tree 명령어가 설치되어 있지 않습니다.
Homebrew를 이용해서 tree를 설치합니다.

1. tree 설치하기

brew install tree

2. 결과확인

tree명령어를 입력하여 결과를 확인합니다.

.
├── README.md
├── config.py
├── environment.yml
├── py
│   ├── __init__.py
│   ├── filter.py
│   ├── forms.py
│   ├── models.py
│   ├── static
│   │   ├── bootstrap.min.css
│   │   ├── bootstrap.min.js
│   │   ├── jquery-3.6.0.min.js
│   │   └── style.css
│   ├── templates
│   │   ├── answer
│   │   │   └── answer_form.html
│   │   ├── auth
│   │   │   ├── login.html
│   │   │   └── signup.html
│   │   ├── base.html
│   │   ├── form_errors.html
│   │   ├── navbar.html
│   │   └── question
│   │       ├── question_detail.html
│   │       ├── question_form.html
│   │       └── question_list.html
│   └── views
│       ├── answer_views.py
│       ├── auth_views.py
│       ├── main_views.py
│       └── question_views.py
└── py.db
728x90
반응형

+ Recent posts