Add list-cheat-sheet.ps1

This commit is contained in:
Markus Fleschutz 2021-04-10 11:42:06 +02:00
parent 1d0cae88bb
commit 6ec26b78b7
11 changed files with 38 additions and 0 deletions

View File

@ -60,6 +60,7 @@ list-aliases.ps1, lists all PowerShell aliases
list-anagrams.ps1, lists all anagrams of the given word
list-automatic-variables.ps1, lists the automatic variables of PowerShell
list-branches.ps1, lists all branches in the current/given Git repository
list-cheat-sheet.ps1, lists the PowerShell cheat sheet
list-commits.ps1, lists all commits in the current/given Git repository
list-current-timezone.ps1, lists the current time zone details
list-clipboard.ps1, lists the contents of the clipboard

1 Script Description
60 list-anagrams.ps1 lists all anagrams of the given word
61 list-automatic-variables.ps1 lists the automatic variables of PowerShell
62 list-branches.ps1 lists all branches in the current/given Git repository
63 list-cheat-sheet.ps1 lists the PowerShell cheat sheet
64 list-commits.ps1 lists all commits in the current/given Git repository
65 list-current-timezone.ps1 lists the current time zone details
66 list-clipboard.ps1 lists the contents of the clipboard

View File

@ -139,6 +139,7 @@ Mega Collection of PowerShell Scripts
* [introduce-powershell.sh](Scripts/introduce-powershell.sh) - introduces PowerShell to new users
* [list-aliases.ps1](Scripts/list-aliases.ps1) - lists all PowerShell aliases
* [list-automatic-variables.ps1](Scripts/list-automatic-variables.ps1) - lists the automatic variables of PowerShell
* [list-cheat-sheet.ps1](Scripts/list-cheat-sheet.ps1) - lists the PowerShell cheat sheet
* [list-cmdlets.ps1](Scripts/list-cmdlets.ps1) - lists the PowerShell cmdlets
* [list-modules.ps1](Scripts/list-modules.ps1) - lists the PowerShell modules
* [list-profiles.ps1](Scripts/list-profiles.ps1) - lists your PowerShell profiles

0
Scripts/convert-mysql2csv.ps1 Normal file → Executable file
View File

0
Scripts/convert-sql2csv.ps1 Normal file → Executable file
View File

0
Scripts/install-google-chrome.ps1 Normal file → Executable file
View File

36
Scripts/list-cheat-sheet.ps1 Executable file
View File

@ -0,0 +1,36 @@
<#
.SYNTAX list-cheat-sheet.ps1
.DESCRIPTION lists the PowerShell cheat sheet
.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

0
Scripts/list-mysql-tables.ps1 Normal file → Executable file
View File

0
Scripts/list-sql-tables.ps1 Normal file → Executable file
View File

0
Scripts/list-system-info.ps1 Normal file → Executable file
View File

0
Scripts/open-file-explorer.ps1 Normal file → Executable file
View File

0
Scripts/search-filename.ps1 Normal file → Executable file
View File