From 736bfc276a215df035f9a8f0130f710a4c705ba1 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Sat, 30 Oct 2021 15:46:09 +0200 Subject: [PATCH] Add 2 scripts --- Scripts/open-outdoor-active.ps1 | 15 +++++++++++++++ Scripts/open-radio-costa-del-mar.ps1 | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100755 Scripts/open-outdoor-active.ps1 create mode 100755 Scripts/open-radio-costa-del-mar.ps1 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