I have 2 files start.bat
and include.bat
in a directory
REM include.bat
c:\php\php.exe script.php
@echo off
echo T1
CALL include.bat
echo T2
include.bat
echo T3
T3 does not show. .bat
script dies.
What's the difference between calling bat file directly vs CALL?