2023-07-29 09:55:25 +02:00
|
|
|
## Script: *play-super-mario.ps1*
|
2021-11-08 21:36:42 +01:00
|
|
|
|
2022-02-10 09:01:07 +01:00
|
|
|
This PowerShell script plays the Super Mario intro.
|
2021-11-08 21:36:42 +01:00
|
|
|
|
|
|
|
## Parameters
|
|
|
|
```powershell
|
2023-07-29 09:45:37 +02:00
|
|
|
play-super-mario.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.
|
|
|
|
```
|
|
|
|
|
|
|
|
## Example
|
|
|
|
```powershell
|
|
|
|
PS> ./play-super-mario
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
## Notes
|
2022-11-17 19:46:02 +01:00
|
|
|
Author: Markus Fleschutz | License: CC0
|
2021-11-08 21:36:42 +01:00
|
|
|
|
|
|
|
## Related Links
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
2023-07-29 09:55:25 +02:00
|
|
|
## Script Content
|
2022-11-17 20:05:34 +01:00
|
|
|
```powershell
|
2022-11-17 20:02:26 +01:00
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
|
|
Plays the Super Mario intro
|
|
|
|
.DESCRIPTION
|
|
|
|
This PowerShell script plays the Super Mario intro.
|
|
|
|
.EXAMPLE
|
|
|
|
PS> ./play-super-mario
|
|
|
|
.LINK
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
#>
|
|
|
|
|
|
|
|
[console]::beep(659,250) ##E
|
|
|
|
[console]::beep(659,250) ##E
|
|
|
|
[console]::beep(659,300) ##E
|
|
|
|
[console]::beep(523,250) ##C
|
|
|
|
[console]::beep(659,250) ##E
|
|
|
|
[console]::beep(784,300) ##G
|
|
|
|
[console]::beep(392,300) ##g
|
|
|
|
[console]::beep(523,275) ## C
|
|
|
|
[console]::beep(392,275) ##g
|
|
|
|
[console]::beep(330,275) ##e
|
|
|
|
[console]::beep(440,250) ##a
|
|
|
|
[console]::beep(494,250) ##b
|
|
|
|
[console]::beep(466,275) ##a#
|
|
|
|
[console]::beep(440,275) ##a
|
|
|
|
[console]::beep(392,275) ##g
|
|
|
|
[console]::beep(659,250) ##E
|
|
|
|
[console]::beep(784,250) ## G
|
|
|
|
[console]::beep(880,275) ## A
|
|
|
|
[console]::beep(698,275) ## F
|
|
|
|
[console]::beep(784,225) ## G
|
|
|
|
[console]::beep(659,250) ## E
|
|
|
|
[console]::beep(523,250) ## C
|
|
|
|
[console]::beep(587,225) ## D
|
|
|
|
[console]::beep(494,225) ## B
|
|
|
|
exit 0 # success
|
2022-11-17 20:05:34 +01:00
|
|
|
```
|
2022-11-17 20:02:26 +01:00
|
|
|
|
2023-07-29 09:55:25 +02:00
|
|
|
*(generated by convert-ps2md.ps1 using the comment-based help of play-super-mario.ps1 as of 07/29/2023 09:55:14)*
|