Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PowerShell 是否具有与以下命令构造等效的sh(及其衍生工具):
sh
$ cmd1 && cmd2
成功退出cmd2时只在哪里运行?cmd1
cmd2
cmd1
我知道您可以将命令与分号结合使用。但是,这忽略了命令的退出状态。
试试这个:
$errorActionPreference='Stop'; cmd1; cmd2
&& 或 || 没有直接的类比。不过,有几个关于替代品的讨论。这是一个例子:
powershell 中的条件执行(&& 和 ||)