mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-05-31 23:45:48 +02:00
Update cheat-sheet.md
This commit is contained in:
parent
aea81c9ce5
commit
cb99fcafb8
@ -67,6 +67,8 @@ Operators
|
|||||||
$a = 2 # Basic variable assignment operator
|
$a = 2 # Basic variable assignment operator
|
||||||
$a += 1 # Incremental assignment operator
|
$a += 1 # Incremental assignment operator
|
||||||
$a -= 1 # Decrement assignment operator
|
$a -= 1 # Decrement assignment operator
|
||||||
|
$a++ # Incremental assignment operator
|
||||||
|
$a-- # Decrement assignment operator
|
||||||
|
|
||||||
$a -eq 0 # Equality comparison operator
|
$a -eq 0 # Equality comparison operator
|
||||||
$a -ne 5 # Not-equal comparison operator
|
$a -ne 5 # Not-equal comparison operator
|
||||||
@ -326,3 +328,12 @@ $Params = @{
|
|||||||
}
|
}
|
||||||
Invoke-RestMethod @Params # Call a REST API, using the HTTP GET method
|
Invoke-RestMethod @Params # Call a REST API, using the HTTP GET method
|
||||||
```
|
```
|
||||||
|
|
||||||
|
More Help
|
||||||
|
---------
|
||||||
|
* PowerShell documentation: https://docs.microsoft.com/en-us/powershell
|
||||||
|
* Tutorial: https://www.guru99.com/powershell-tutorial.html
|
||||||
|
* Video tutorials: https://www.youtube.com/results?search_query=PowerShell
|
||||||
|
* FAQ's: https://github.com/fleschutz/PowerShell/blob/main/docs/FAQ.md
|
||||||
|
* 500+ sample scripts: https://github.com/fleschutz/PowerShell
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user