美文网首页
Windows Batch常用语法 - exit命令

Windows Batch常用语法 - exit命令

作者: CodingCode | 来源:发表于2023-01-09 03:38 被阅读0次

格式:

      EXIT [/B] [exitCode]
  • /B 退出batch script,而不是CMD.exe;否则整个CMD.exe窗口都退出。
  • exitCode 退出值;这个值在caller可以使用变量%ERRORLEVEL%查看。

例如

c:\>type test.bat
@echo off
echo Hello World!
exit /b 1

c:\>test.bat
Hello World!

c:\>echo %errorlevel%
1

c:\huishen\test>

相关文章

网友评论

      本文标题:Windows Batch常用语法 - exit命令

      本文链接:https://www.haomeiwen.com/subject/vjspcdtx.html