diff --git a/Scripts/open-outdoor-active.ps1 b/Scripts/open-outdoor-active.ps1 new file mode 100755 index 00000000..3588e3cc --- /dev/null +++ b/Scripts/open-outdoor-active.ps1 @@ -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 diff --git a/Scripts/open-radio-costa-del-mar.ps1 b/Scripts/open-radio-costa-del-mar.ps1 new file mode 100755 index 00000000..f7c75993 --- /dev/null +++ b/Scripts/open-radio-costa-del-mar.ps1 @@ -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