mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-21 15:33:15 +01:00
75 lines
1.6 KiB
Markdown
75 lines
1.6 KiB
Markdown
The *play-super-mario.ps1* Script
|
|
===========================
|
|
|
|
This PowerShell script plays the Super Mario intro.
|
|
|
|
Parameters
|
|
----------
|
|
```powershell
|
|
/home/markus/Repos/PowerShell/scripts/play-super-mario.ps1 [<CommonParameters>]
|
|
|
|
[<CommonParameters>]
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
```
|
|
|
|
Example
|
|
-------
|
|
```powershell
|
|
PS> ./play-super-mario
|
|
|
|
```
|
|
|
|
Notes
|
|
-----
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
Related Links
|
|
-------------
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
Script Content
|
|
--------------
|
|
```powershell
|
|
<#
|
|
.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
|
|
```
|
|
|
|
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:59)*
|