「batファイル」exit /bでバッチファイルを終了するサンプル

2021年3月10日

書式
exit /b
使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
@echo off
rem メッセージを出力
echo message is AAA
rem 処理を中止
exit /b 1
rem 処理が到達しない
echo message is BBB
@echo off rem メッセージを出力 echo message is AAA rem 処理を中止 exit /b 1 rem 処理が到達しない echo message is BBB
@echo off
 
rem メッセージを出力
echo message is AAA
 
rem  処理を中止
exit /b 1
 
rem 処理が到達しない
echo message is BBB

実行結果
>test.bat
message is AAA

batch

Posted by arkgame