mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-17 12:10:53 +01:00
16 lines
356 B
PowerShell
16 lines
356 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Plays metal music
|
|||
|
.DESCRIPTION
|
|||
|
This script launches the Web browser and plays metal music.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./play-metal-music
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Power_Rock_93.9_WKTG"
|
|||
|
exit 0 # success
|