what does it mean when I call batch script from batch script without CALL or START?
example. I have two scripts a.bat and b.bat
a.bat:
echo I am A >> log b.bat echo end of A >> log b.bat:
echo I am B >> log sleep 1 echo end of B >> log after execution of a.bat i see in the log:
I am A I am B end of B Where is message "end of A" ?