mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-11 01:00:39 +01:00
16 lines
344 B
PowerShell
16 lines
344 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Opens radio station JAM FM
|
|||
|
.DESCRIPTION
|
|||
|
This script launches the Web browser with the radio station JAM FM.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./open-radio-jam-f-m
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/jamfm"
|
|||
|
exit 0 # success
|