Tree 命令显示当前文件夹的目录结构,可以帮我们迅速了解当前目录的结构。
Tree
但有些文件夹里的内容(比如 node_modules)我们是不想看到的,这时就需要忽略掉这些内容。
node_modules
-I 命令允许你使用正则匹配来排除掉你不想看到的 文件夹,如:tree -I "node_modules"。
-I
文件夹
tree -I "node_modules"
也可以使用 | 同时排除掉多个文件夹,如:tree -I "node_modules|.gitignore|test_*"。
|
tree -I "node_modules|.gitignore|test_*"