Windows/cmd.exe 相当于 Linux/bash 的 $ 是什么? -- 程序退出/返回代码?
在 Unix/bash 中,我可以简单地说:
$回显$?
从交互式和非交互式 shell 中找出程序的返回/退出代码。
现在,我如何在 Windows/cmd.exe 中执行等效操作?
Possible Duplicate:
How do I get the application exit code from a Windows command line?
In Unix/bash, I can simply say:
$ echo $?
to find out the return/exit code of a program, both from interactive and non-interactive shells.
Now, how can I do the equivalent in Windows/cmd.exe?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用“errorlevel”,如下所示:
errorlevel 命令有点特殊; 如果返回代码等于或高于指定的错误级别,则返回 true。 您还可以编写
此页面很好地概述了如何在 .bat 文件中使用错误级别。
Use "errorlevel", like this:
The errorlevel command is a little peculiar; it returns true if the return code was equal to or higher than the specified errorlevel. You can also write
This page is a good overview of how to use errorlevels in .bat files.
等价的是:
The equivalent is:
检查错误级别
check for the ERRORLEVEL