mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
16 lines
375 B
PowerShell
Executable File
16 lines
375 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Plays the radio station Costa Del Mar
|
|
.DESCRIPTION
|
|
This script launches the Web browser and plays radio station Costa Del Mar.
|
|
.EXAMPLE
|
|
PS> ./play-radio-costa-del-mar
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/costadelmar"
|
|
exit 0 # success
|