vote up 5 vote down star

&& is notoriously hard to search for on google, but the best I've found is this article which says to use -and.

Unfortunately it doesn't give any more information, and I can't find out what I'm supposed to do with -and (again, a notoriously hard thing to search for)

The context I'm trying to use it in is "execute cmd1, and if successful, execute cmd2", basically this:

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

This should be an easy few rep points to someone who knows, thanks!

flag

78% accept rate

5 Answers

vote up 4 vote down check

In CMD, '&&' means "execute command 1, and if it succeeds, execute command 2". I have used it for things like:

build && run_tests

In PowerShell, the closest thing you can do is:

(build) -and (run_tests)

It has the same logic, but the output text from the commands is lost. Maybe it is good enough for you, though.

EDIT

If you're doing this in a script, you will probably be better off separating the statements, like this:

build
if ($?) {
    run_tests
}
link|flag
I hadn't surrounded the actions with brackets. Once I did that, it worked (but unfortunately just echoed True when it was finished). It seems rather ridiculous that they would remove (well, cripple) such basic functionality – Orion Edwards Feb 19 at 19:44
I don't know much about powershell other than it is based on .NET objects - would it be possible to extend it to add a proper &&, or does the syntax not allow that? – Orion Edwards Feb 19 at 19:47
I don't know of a way to create something like '&&' in PowerShell. You could create a command that takes two scriptblocks, like `andand { build } { run_tests } and does the 'if ($?)' thing with them. I don't see that as being worth my while, but maybe you will like it. – Jay Bazuzi Feb 19 at 20:17
RE: "ridiculous that they would remove" - I don't like to think of PowerShell as "CMD with the stupid parts removed". is.gd/k92B – Jay Bazuzi Feb 19 at 20:18
ok, perhaps not "remove", but "fail to implement"... – Orion Edwards Feb 21 at 21:06
show 2 more comments
vote up 4 vote down

&& and || were on the list of things to implement (still are) but did not pop up as the next most useful thing to add. The reason is that we have -AND and -OR. If you think it is important, please file a suggestion on Connect and we'll consider it for V3.

Experiment! Enjoy! Engage!

Jeffrey Snover [MSFT] Windows Management Partner Architect Visit the Windows PowerShell Team blog at: http://blogs.msdn.com/PowerShell Visit the Windows PowerShell ScriptCenter at: http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx

link|flag
2  
I'm signed up on Connect, and have nominated myself for powershell, but I can't figure out how to place a suggestion. The Connect website is really complex and confusing :-( – Orion Edwards Feb 22 at 20:04
vote up 2 vote down

-and -or -lt -gt -le -ge ...

no offense to the powershell team, but were you guys on crack when you decided to use those ridiculous things and not the standard && || < > <= >=.

link|flag
vote up 1 vote down

It depends on the context, but here's an example of "-and" in action:

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

So that's getting all the files bigger than 10kb in a directory whose filename starts with "f".

link|flag
vote up 0 vote down

PowerShell has -and and -or logical operators. Are the operators not working the way you expect them to? If so, you can post the expression here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.