DOS遍历文件夹命令

for /r %%a in (*.txt) do (echo %%a 
start notepad %%a
copy %%a %%a.old)

你可能感兴趣的:(DOS命令)