CALL
orなしでバッチ スクリプトからバッチ スクリプトを呼び出すとはどういう意味START
ですか?
例。a.bat と b.bat の 2 つのスクリプトがあります。
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
a.bat の実行後、ログに表示されます:
I am A
I am B
end of B
メッセージ「end of A」はどこにありますか?