Answers for "powershell or"

3

powershell if operator

if (condition1 -eq condition2) {
	//statement
} else {
	//statement
}

-eq	Equals to
-ne	Not equal to
-gt	Greater than
-ge	Greater than or equal to
-lt	Less than
Posted by: Guest on December-08-2020
0

powershell which equivalent

Get-Command <command-name>
Posted by: Guest on January-27-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language