Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用lm命令过滤加载的模块。
lm
但lm *SHELL*仍然列出所有模块(SHELL32仅预期)
lm *SHELL*
SHELL32
那么, lm 命令是否支持呢?或者我可以使用什么替代品?
您需要使用“m”选项来指定通配符。lm m *SHELL* 应该可以工作。
看