支持通配符的 tree 命令

支持通配符的 tree 命令

有人知道支持通配符的“树”工具吗?

例如,我想在“树”输出中看到所有.h 和.cpp 文件。

我不想使用 dir /s *.h *.cpp 等 - 我想看到一棵树,而不是路径列表。

答案1

在此处找到https://stackoverflow.com/questions/11004731/output-of-tree-in-command-prompt

tree /f /a | findstr /ri /c:"^[^| ]" /c:"^[| ]*[+\\]" /c:"\.h$"

相关内容