标签: batch-file
我有2个文件a.bat和b.bat
a.bat
b.bat
b.bat文件如下所示:
exit /b 0
a.bat文件如下所示
call b.bat
问题:exit /b 0中b.bat的执行对a.bat的文件有什么影响?假设我们运行call b.bat,a.bat会执行什么操作?