-
-
Notifications
You must be signed in to change notification settings - Fork 428
/
list-cheat-sheet.ps1
executable file
·42 lines (41 loc) · 1.37 KB
/
list-cheat-sheet.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<#
.SYNOPSIS
Lists the PowerShell cheat sheet
.DESCRIPTION
This PowerShell script lists the PowerShell cheat sheet.
.EXAMPLE
PS> ./list-cheat-sheet.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
"PowerShell Cheat Sheet"
"======================"
""
"Basic Commands"
"--------------"
" Cmdlet : Commands built into shell written in .NET"
" Functions : Commands written in PowerShell language"
" Parameter : Argument to a Cmdlet/Function/Script"
" Alias : Shortcut for a Cmdlet or Function"
" Scripts : Text files with .ps1 extension"
" Applications : Existing windows programs"
" Pipelines : Pass objects Get-process word | Stop-Process"
" Ctrl+c : Interrupt current command"
" Left/right : Navigate editing cursor"
"Ctrl+left/right : Navigate a word at a time"
" Home / End : End Move to start / end of line"
" Up / down : Move up and down through history"
" Insert : Toggles between insert/overwrite mode"
" F7 : Command history in a window"
"Tab / Shift-Tab : Command line completion"
""
"Variables"
"---------"
" `$var = `"string`" : Assign variable"
"`$a,`$b = 0 or `$a,`$b = 'a','b' : Assign multiple variables"
" `$a,`$b = `$b,`$a : Flip variables"
" `$var=[int]5 : Strongly typed variable"
""
exit 0 # success