第1个回答 2012-03-11
@for /f "tokens=* delims=" %%i in ('dir /s /b /a-d *.dll') do ABC.EXE -r "%%i"
第2个回答 2012-03-11
@echo off
set fn=abc.exe
for /f "tokens=*" %%i in ('dir/s/b *.dll') do "%fn%" -r "%%i"
第3个回答 2012-03-12
@for /f "delims=" %%i in ('dir /s /b *.dll') do @"ABC.EXE" -r "%%i"
第4个回答 2012-03-17
@echo off
for /f "tokens=*" %%i in ('dir/s/b *.dll') do "abc.exe" -r "%%i"本回答被提问者采纳
第5个回答 2012-03-11
@for /f "tokens=* delims=" %%i in ('dir /s /b /a-d *.dll') do ABC.EXE -r "%%i"
第6个回答 2012-03-11
@echo off
set fn=abc.exe
for /f "tokens=*" %%i in ('dir/s/b *.dll') do "%fn%" -r "%%i"
第7个回答 2012-03-12
@for /f "delims=" %%i in ('dir /s /b *.dll') do @"ABC.EXE" -r "%%i"
第8个回答 2012-03-17
@echo off
for /f "tokens=*" %%i in ('dir/s/b *.dll') do "abc.exe" -r "%%i"本回答被提问者采纳