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
반응형
'사무(OA)' 카테고리의 다른 글
(윈도우11) 노트북 커버 덮고 외부 디스플레이 사용하기 (0) | 2024.01.31 |
---|---|
[MAC] Mac에서 docker 설치하기 (0) | 2022.11.05 |
[카카오 메일]Windows10 메일 연결 (0) | 2021.08.13 |