在 DOS 中查看命令返回码的最佳方法
有时我在 cmd
中运行命令,例如:
fc /b file1 file2
并希望查看 fc 的返回代码。有没有一种简单的方法可以做到这一点?
Sometimes I run a command in cmd
such as:
fc /b file1 file2
and would like to see the return code from fc. Is there a simple way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 TechNet,命令 shell 概述:
“%ERRORLEVEL% ...返回最近使用的命令的错误代码。非零值通常表示错误。”
要测试批处理文件中的特定错误级别,您可能会发现这篇知识库文章很有用。
From TechNet, Command shell overview:
"%ERRORLEVEL% ... Returns the error code of the most recently used command. A non zero value usually indicates an error."
To test for specific error levels in batch files, you may find this knowledgebase article useful.