紫橙 当前离线
列兵
DAIC 当前离线
中将
TOP
PowerShell (powershell传教士)当前离线
上尉
foreach $a in (dir /a-d/s/b *.RSA) #分别把每个dir出来的文件,放入$a { .\..\123.exe -p -f $a }复制代码
522235677 (张三)当前离线
少校
for /f "delims=" %%a in ('dir /a-d/s/b *.RSA') do call .\..\123.exe -p -f "%%~a"复制代码