Add play-radio-blue.ps1 and play-radio-seven.ps1

This commit is contained in:
Markus Fleschutz 2021-11-15 16:31:28 +01:00
parent 0587eddff9
commit c7a096833f
4 changed files with 33 additions and 3 deletions

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Plays Radio Blue 100.7
.DESCRIPTION
This script launches the Web browser and plays radio station Blue 100.7.
.EXAMPLE
PS> ./play-radio-blue
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "http://streema.com/radios/play/Blue_100.7"
exit 0 # success

View File

@ -2,7 +2,7 @@
.SYNOPSIS .SYNOPSIS
Plays radio station BOB! Plays radio station BOB!
.DESCRIPTION .DESCRIPTION
This script launches the Web browser and plays radio station BOB!. This script launches the Web browser and plays radio station BOB!
.EXAMPLE .EXAMPLE
PS> ./play-radio-bob PS> ./play-radio-bob
.NOTES .NOTES
@ -11,5 +11,5 @@
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>
& "$PSScriptRoot/open-browser.ps1" "https://tunein.com/radio/RADIO-BOB-994-s96189/" & "$PSScriptRoot/open-browser.ps1" "http://streema.com/radios/play/RADIO_BOB_BOBs_Alternative"
exit 0 # success exit 0 # success

View File

@ -11,5 +11,5 @@
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>
& "$PSScriptRoot/open-browser.ps1" "https://tunein.com/radio/Radio-Gong-963-s17494/" & "$PSScriptRoot/open-browser.ps1" "http://streema.com/radios/play/Radio_Gong"
exit 0 # success exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Plays Radio 7 Ulm
.DESCRIPTION
This script launches the Web browser and plays radio station 7 Ulm.
.EXAMPLE
PS> ./play-radio-seven
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "http://streema.com/radios/play/Radio_7"
exit 0 # success