Add 2 scripts

This commit is contained in:
Markus Fleschutz 2021-10-30 15:46:09 +02:00
parent 641a82d250
commit 736bfc276a
2 changed files with 30 additions and 0 deletions

15
Scripts/open-outdoor-active.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens the Outdoor Active website
.DESCRIPTION
This script launches the Web browser with the Outdoor Active website.
.EXAMPLE
PS> ./open-outdoor-active
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://www.outdooractive.com"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens the radio station Costa Del Mar
.DESCRIPTION
This script launches the Web browser with the radio station Costa Del Mar
.EXAMPLE
PS> ./open-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