bash 的 set -e 的 cmd.exe 替代方案是啥?

Posted

技术标签:

【中文标题】bash 的 set -e 的 cmd.exe 替代方案是啥?【英文标题】:What would be the cmd.exe alternative to bash's set -e?bash 的 set -e 的 cmd.exe 替代方案是什么? 【发布时间】:2013-07-27 14:08:09 【问题描述】:

我想获得 bash set -e 提供的相同功能,但在 Windows 批处理文件中。这怎么可能?

目前这允许我退出,但我不想在批处理文件的每一行之后添加这一行。

IF %ERRORLEVEL% NEQ 0 exit /B  %ERRORLEVEL%

【问题讨论】:

AFAIK 你想要的批处理文件是不可能的。 难以置信的是它在cmd.exe中不存在。这就像 Java 代码到处都是空的 catch 块! 【参考方案1】:

供参考

-e   errexit
      Exit immediately if a simple command exits with a non-zero
      status, unless the command that fails is part of an until or
      while loop, part of an if statement, part of a && or || list,
      or if the command's return status is being inverted using !.

http://ss64.com/bash/set.html

很遗憾,这仅靠一个命令是不可能的。

您必须在每个命令之后添加一个检查,以便在出错时退出。您可以在命令结果上使用或检查||,而不是一整行。

command || exit /b

这也可以通过将其放在开头的变量中来简化。

set "e=|| exit /b"
command1 %e%
command2 %e%

【讨论】:

【参考方案2】:

批处理文件的上下文很重要。这应该允许您启动多个文件并以真正的错误级别退出。

@echo off
for %%a in (
"exeone"
"exetwo"
"exethree"
"exefour"
) do "%%~a" || exit /B  %ERRORLEVEL%

【讨论】:

以上是关于bash 的 set -e 的 cmd.exe 替代方案是啥?的主要内容,如果未能解决你的问题,请参考以下文章

有没有办法自动将命令历史保存到 cmd.exe 中的文件中,类似于 bash 的 bash_history?

Windows的idea的Terminal替换为git bash(默认是Windows的cmd.exe命令行)

Windows的idea的Terminal替换为git bash(默认是Windows的cmd.exe命令行)

用于 Windows 的 Git 中的 Bash:使用 CMD.exe /C 和 args 运行命令时的怪异

Powerful Bash-style command line editing for cmd.exe

有没有办法自动将命令历史记录保存到cmd.exe中的文件,类似于bash的bash_history?