如何在 Windows 批处理文件中返回值?我可以在 Unix 中使用,exit 1
但在 Windows 中如何执行此操作?
答案1
在 Windows 批处理文件中,要将值返回到命令 shell,请使用
exit /b yourexitcode
例如
exit /b 3
将在 3 中重新调整%ERRORLEVEL%
答案2
在 Windows 中:
exit /b 1
如何在 Windows 批处理文件中返回值?我可以在 Unix 中使用,exit 1
但在 Windows 中如何执行此操作?
在 Windows 批处理文件中,要将值返回到命令 shell,请使用
exit /b yourexitcode
例如
exit /b 3
将在 3 中重新调整%ERRORLEVEL%
在 Windows 中:
exit /b 1