有人知道支援通配符的「樹」工具嗎?
例如,我想在“樹”輸出中查看所有 .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$"
有人知道支援通配符的「樹」工具嗎?
例如,我想在“樹”輸出中查看所有 .h 和 .cpp 檔案。
我不想使用 dir /s *.h *.cpp 等 - 我想看到一棵樹,而不是路徑列表。
在這裡找到https://stackoverflow.com/questions/11004731/output-of-tree-in-command-prompt
tree /f /a | findstr /ri /c:"^[^| ]" /c:"^[| ]*[+\\]" /c:"\.h$"