태그 보관물: patterns

patterns

`tree` 명령에 여러 무시 패턴을 어떻게 지정합니까? 제거하고 싶습니다 . tree명령에

프로덕션 시스템의 디렉토리 구조를 인쇄해야하며 트리 에서 특정 디렉토리를 제거하고 싶습니다 .

tree명령에 여러 무시 패턴을 어떻게 지정 합니까?



답변

-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’가있는 디렉토리를 건너 뜁니다. 보다 강력한 일치를 위해 와일드 카드를 적용 할 수 있습니다.


답변