web-dev-qa-db-ja.com

`tree`コマンドに複数の無視パターンを指定するにはどうすればよいですか?

本番システムのディレクトリ構造を出力する必要があります tree から特定のディレクトリをいくつか削除したいのですが?

treeコマンドに複数の無視パターンを指定するにはどうすればよいですか?

115
Bharat Sinha

-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」が含まれるディレクトリは、ディレクトリ階層内のどこにあってもスキップします。明らかに、ワイルドカードを適用してより強力なマッチングを行うことができます。

158
ire_and_curses