Calling a batch file from another batch file

Unlike as it is in Linux, calling a batch file from another batch file causes the first process to be overload by the new one. So, as a C64 programmer would put it, it is rather a “GOTO” than a “GOSUB”. In order to avoid this problem, put a “call” command before calling the second batch file.

call sub.bat “Hallo”
call sub.bat “World”