mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 04:24:01 +01:00
16 lines
344 B
PowerShell
Executable File
16 lines
344 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Plays radio station YOU FM
|
|
.DESCRIPTION
|
|
This script launches the Web browser and plays radio station YOU FM.
|
|
.EXAMPLE
|
|
PS> ./play-radio-you-fm
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/youfm"
|
|
exit 0 # success
|