Answers:
如果要列出具有三个扩展名之一的文件,则应从以下内容开始:
dir *.exe *.dll *.sys
dir *.exe *.dll *.sys /s /p 将搜索所有子目录,并且每个屏幕之间都有一个停顿
将其制作为批处理文件(.bat),然后在命令提示符下运行它
@echo off
dir c:\windows\system32\*.dll
pause
dir c:\windows\system32\*.exe
pause
dir c:\windows\system32\*.sys