mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 20:44:17 +01:00
16 lines
341 B
PowerShell
Executable File
16 lines
341 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Opens radio station N-JOY
|
|
.DESCRIPTION
|
|
This script launches the Web browser with the radio station N-JOY.
|
|
.EXAMPLE
|
|
PS> ./open-radio-malibu
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/n-joy"
|
|
exit 0 # success
|