tree命令如何忽略某些目录?

直接敲 tree 会生成所有目录树结构, 但是有些 .svn node_module 这些目录不需要生成。 用什么命令?

🕐
// ignore
tree -I '*svn|*node_module*'