「batファイル」exit /bでバッチファイルを終了するサンプル
書式
exit /b
使用例
@echo off rem メッセージを出力 echo message is AAA rem 処理を中止 exit /b 1 rem 処理が到達しない echo message is BBB
実行結果
>test.bat
message is AAA
Coding Changes the World
書式
exit /b
使用例
@echo off rem メッセージを出力 echo message is AAA rem 処理を中止 exit /b 1 rem 処理が到達しない echo message is BBB
実行結果
>test.bat
message is AAA