注意:这个问题最初是在2009年提出的,当时powershell还不支持&&操作符。 2019年,根据Jay的回答,微软在Powershell 7中增加了对&&和||的支持。 https://stackoverflow.com/a/564092/234


最初的问题

&&是出了名的难在谷歌搜索上搜索,但我找到的最好的是这篇文章说要使用-。

不幸的是,它没有提供更多的信息,我不能找到我应该做什么-和(再次,一个出了名的很难搜索的东西)。

我试图使用它的上下文是“执行cmd1,如果成功,执行cmd2”,基本上是这样的:

csc /t:exe /out:a.exe SomeFile.cs && a.exe

如果你只是想在单行上运行多个命令,而不关心第一个命令是否失败,你可以使用;对于我的大多数目的来说,这是可以的。

例如:kill -n myapp;/ myapp.exe。


当前回答

试试这个:

$errorActionPreference='Stop'; csc /t:exe /out:a.exe SomeFile.cs; a.exe

其他回答

Use:

if (start-process filename1.exe) {} else {start-process filename2.exe}

它比“&&”稍微长一点,但它在没有脚本的情况下完成了相同的任务,并且并不太难记住。

非常老的问题,但对于新手来说:也许这个问题正在寻找的PowerShell版本(类似但不等效)是使用-如下所示:

(build_command) - (run_tests_command)

这取决于上下文,但这里有一个“-”的例子:

get-childitem | where-object { $_.Name.StartsWith("f") -and $_.Length -gt 10kb }

这就是在文件名以“f”开头的目录中获取所有大于10kb的文件。

如果你的命令在cmd.exe(类似python ./script.py,但不是PowerShell命令,如ii .exe)中可用。(这意味着通过Windows资源管理器打开当前目录)),您可以在PowerShell中运行cmd.exe。语法是这样的:

cmd /c "command1 && command2"

这里,&&由这个问题中描述的cmd语法提供。

我认为一个简单的if语句就可以做到这一点。一旦我看到mkelement0的响应,最后的退出状态存储在$?,我总结了以下几点:

# Set the first command to a variable
$a=somecommand

# Temporary variable to store exit status of the last command (since we can't write to "$?")
$test=$?

# Run the test
if ($test=$true) { 2nd-command }

所以对于OP的例子,它将是:

a=(csc /t:exe /out:a.exe SomeFile.cs); $test = $?; if ($test=$true) { a.exe }