注意:这个问题最初是在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。


当前回答

我认为一个简单的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 }

其他回答

Use:

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

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

一个详细的等效是组合$LASTEXITCODE和-eq 0:

msbuild.exe args; if ($LASTEXITCODE -eq 0) { echo 'it built'; } else { echo 'it failed'; }

我不知道为什么if($?)不适合我,但是这个可以。

我认为一个简单的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 }

&&和||在要实现的东西列表上(仍然是),但没有出现在下一个最有用的东西中。原因是我们有-AND和-OR。

如果你认为这很重要,请在Connect上提出建议,我们会考虑V3。

我们可以尝试这个命令,而不是使用&&方法:

try {hostname; if ($lastexitcode -eq 0) {ipconfig /all | findstr /i bios}} catch {echo err} finally {}