답변:
-I
명령으로 모든 패턴을로 구분하여 제공하면 됩니다 |
. 맨 페이지에서 :
-P pattern
List only those files that match the wild-card pattern. Note:
you must use the -a option to also consider those files begin‐
ning with a dot `.' for matching. Valid wildcard operators are
`*' (any zero or more characters), `?' (any single character),
`[...]' (any single character listed between brackets (optional
- (dash) for character range may be used: ex: [A-Z]), and
`[^...]' (any single character not listed in brackets) and `|'
separates alternate patterns.
-I pattern
Do not list those files that match the wild-card pattern.
예를 들어
tree -I 'test*|docs|bin|lib'
'docs', 'bin'및 'lib', 디렉토리 및 디렉토리 계층 내에있을 수있는 이름에 'test'가있는 디렉토리를 건너 뜁니다. 보다 강력한 일치를 위해 와일드 카드를 적용 할 수 있습니다.
docs/subdoc/
제외 할 수 있습니까?
tree --prune -P '*.html'
디렉토리도 있지만 .html
파일이 들어있는 디렉토리 만 가져옵니다 .