mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-28 01:28:50 +01:00
28 lines
779 B
PowerShell
Executable File
28 lines
779 B
PowerShell
Executable File
#!/bin/powershell
|
|
<#
|
|
.SYNTAX ./play-the-imperial-march.ps1
|
|
.DESCRIPTION plays the Imperial March (Star Wars)
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
[console]::beep(440,500)
|
|
[console]::beep(440,500)
|
|
[console]::beep(440,500)
|
|
[console]::beep(349,350)
|
|
[console]::beep(523,150)
|
|
[console]::beep(440,500)
|
|
[console]::beep(349,350)
|
|
[console]::beep(523,150)
|
|
[console]::beep(440,1000)
|
|
[console]::beep(659,500)
|
|
[console]::beep(659,500)
|
|
[console]::beep(659,500)
|
|
[console]::beep(698,350)
|
|
[console]::beep(523,150)
|
|
[console]::beep(415,500)
|
|
[console]::beep(349,350)
|
|
[console]::beep(523,150)
|
|
[console]::beep(440,1000)
|
|
exit 0
|