PowerShell/docs/list-cheat-sheet.md

79 lines
2.1 KiB
Markdown
Raw Normal View History

2024-01-25 13:37:12 +01:00
Script: *list-cheat-sheet.ps1*
========================
2021-11-08 21:36:42 +01:00
2022-02-10 09:01:07 +01:00
This PowerShell script lists the PowerShell cheat sheet.
2021-11-08 21:36:42 +01:00
2023-07-29 10:04:38 +02:00
Parameters
----------
2021-11-08 21:36:42 +01:00
```powershell
2023-07-29 10:15:44 +02:00
PS> ./list-cheat-sheet.ps1 [<CommonParameters>]
2021-11-08 21:36:42 +01:00
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2023-07-29 10:04:38 +02:00
Example
-------
2021-11-08 21:36:42 +01:00
```powershell
2023-08-06 21:36:33 +02:00
PS> ./list-cheat-sheet.ps1
2021-11-08 21:36:42 +01:00
```
2023-07-29 10:04:38 +02:00
Notes
-----
2022-11-17 19:46:02 +01:00
Author: Markus Fleschutz | License: CC0
2021-11-08 21:36:42 +01:00
2023-07-29 10:04:38 +02:00
Related Links
-------------
2021-11-08 21:36:42 +01:00
https://github.com/fleschutz/PowerShell
2023-07-29 10:04:38 +02:00
Script Content
--------------
2022-11-17 20:05:34 +01:00
```powershell
2022-11-17 20:02:26 +01:00
<#
.SYNOPSIS
Lists the PowerShell cheat sheet
.DESCRIPTION
This PowerShell script lists the PowerShell cheat sheet.
.EXAMPLE
2023-08-06 21:36:33 +02:00
PS> ./list-cheat-sheet.ps1
2022-11-17 20:02:26 +01:00
.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
2022-11-17 20:05:34 +01:00
```
2022-11-17 20:02:26 +01:00
2024-08-15 09:51:46 +02:00
*(generated by convert-ps2md.ps1 using the comment-based help of list-cheat-sheet.ps1 as of 08/15/2024 09:50:49)*