怎么用批处理往批处理里写命令
怎么编辑a.bat让它在运行时往b.bat中callaa.exe上面写上start/minc:\1.exe在下面写上start/minc:\2.exe...
怎么编辑a.bat让它在运行时往b.bat中call aa.exe上面写上start /min c:\1.exe在下面写上start /min c:\2.exe
展开
展开全部
@echo off>temp.bat
for /f "delims=" %%a in ('type b.bat') do (
if /i "%%a"=="call aa.exe" (
echo>>temp.bat start /min c:\1.exe
echo.%%a>>temp.bat
echo>>temp.bat start /min c:\2.exe
) else (echo.%%a>>temp.bat)
)
move /y temp.bat b.bat
for /f "delims=" %%a in ('type b.bat') do (
if /i "%%a"=="call aa.exe" (
echo>>temp.bat start /min c:\1.exe
echo.%%a>>temp.bat
echo>>temp.bat start /min c:\2.exe
) else (echo.%%a>>temp.bat)
)
move /y temp.bat b.bat
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询