tree
프로그램
...
│ ├── template_one_file.sh
│ ├── template_sed.sh
│ ├── testy.sh
│ ├── tmp
│ │ ├── file1.html.13567_old
│ │ ├── file2.html.13567_old
│ │ ├── file3.html.13567_old
│ │ └── file4.html.13567_old
│ └── use_case_to_add_etc_2_numbers
└── vi
├── vim_tips_and_chearsheet
└── vi_stuff
160 directories, 713 files
tmp 디렉터리를 무시할 수 있습니다(예:)tree -I 'tmp' -L 4
...
│ ├── template_multiple_files.sh
│ ├── template_one_file.sh
│ ├── template_sed.sh
│ ├── testy.sh
│ └── use_case_to_add_etc_2_numbers
└── vi
├── vim_tips_and_chearsheet
└── vi_stuff
157 directories, 709 files
_old
그런데 왜 다음과 같은 단일 파일을 무시할 수 없습니까?
tree -I 'old' -L 4
어느아직_old
파일 표시
...
│ ├── template_multiple_files.sh
│ ├── template_one_file.sh
│ ├── template_sed.sh
│ ├── testy.sh
│ ├── tmp
│ │ ├── file1.html.13567_old
│ │ ├── file2.html.13567_old
│ │ ├── file3.html.13567_old
│ │ └── file4.html.13567_old
│ └── use_case_to_add_etc_2_numbers
└── vi
├── vim_tips_and_chearsheet
└── vi_stuff
160 directories, 713 files
'.*old'
패턴을 시도했지만 '.*old$'
도움이 되지 않았습니다.