treeで特定のファイルを除いて全て表示

2022/04/20に公開

表題の通り。.gitを除く場合は下記。

Terminal
tree -a -I '.git'

複数ファイルを除く場合は下記のようにVertical Barを使う。

Terminal
tree . -a -I 'node_modules|.git'

Discussion