apt install tree*
로 tree를 설치할 수 있다.
| option | param | 의미 |
|---|---|---|
| -d | 디렉터리만 표시 | |
| -f | 파일의 전체 경로 표시 | |
| -i | Makes tree not print the indentation lines, useful when used in conjunction with the -f option. | |
| -I | pattern | Do not list those files that match the wild-card pattern. |
| -P | pattern List only those files that match the wild-card pattern. | |
| -L | level | 깊이 표현! |
| -N | tree는 ascii 가 아닌 문자는 \332 같이 8진수가 인코딩해서 표시하므로 한글이 깨져 보임.N 옵션을 추가하면 한글이 제대로 표시됨. |
