[tool-Mackbook] 폴더구조 보기위한 tree 명령어 설치 하기
[참고 사이트] https://eunguru.tistory.com/150 맥OS에서 폴더 구조를 보기위한 명령어 tree를 실행하고 싶을 때 - Mac OS Version : Mac OS Catalina 10.15 tree 명령어를 맥에서 실행할 때는 아래 순서대로 설치를 하고 tree를 실행하면 폴더구조를 tree형태로 볼 수 있다. 1) ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 2) brew 3) brew install tree 4) tree . ├── manage.py └── tutorial ├── __init__.py ├── settings.py ├── urls.py └── ws..