From 641a82d250f183b9e8a8f451df3e9a7dee791d62 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Sat, 30 Oct 2021 15:23:48 +0200 Subject: [PATCH] Add several scripts --- Scripts/open-accu-weather.ps1 | 15 +++++++++++++++ Scripts/open-deep-l-translator.ps1 | 15 +++++++++++++++ Scripts/open-duck-duck-go.ps1 | 15 +++++++++++++++ Scripts/open-internet-archive.ps1 | 15 +++++++++++++++ Scripts/open-space-weather.ps1 | 15 +++++++++++++++ Scripts/open-start-page.ps1 | 15 +++++++++++++++ Scripts/open-white-house.ps1 | 15 +++++++++++++++ 7 files changed, 105 insertions(+) create mode 100755 Scripts/open-accu-weather.ps1 create mode 100755 Scripts/open-deep-l-translator.ps1 create mode 100755 Scripts/open-duck-duck-go.ps1 create mode 100755 Scripts/open-internet-archive.ps1 create mode 100755 Scripts/open-space-weather.ps1 create mode 100755 Scripts/open-start-page.ps1 create mode 100755 Scripts/open-white-house.ps1 diff --git a/Scripts/open-accu-weather.ps1 b/Scripts/open-accu-weather.ps1 new file mode 100755 index 00000000..ed3ec0dc --- /dev/null +++ b/Scripts/open-accu-weather.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens the AccuWeather website +.DESCRIPTION + This script launches the Web browser with the AccuWeather website. +.EXAMPLE + PS> ./open-accu-weather +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.accuweather.com" +exit 0 # success diff --git a/Scripts/open-deep-l-translator.ps1 b/Scripts/open-deep-l-translator.ps1 new file mode 100755 index 00000000..153ff279 --- /dev/null +++ b/Scripts/open-deep-l-translator.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens the DeepL Translator website +.DESCRIPTION + This script launches the Web browser with the DeepL Translator website. +.EXAMPLE + PS> ./open-deep-l-translator +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.deepl.com/translator" +exit 0 # success diff --git a/Scripts/open-duck-duck-go.ps1 b/Scripts/open-duck-duck-go.ps1 new file mode 100755 index 00000000..371cbca2 --- /dev/null +++ b/Scripts/open-duck-duck-go.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens the DuckDuckGo website +.DESCRIPTION + This script launches the Web browser with the DuckDuckGo website. +.EXAMPLE + PS> ./open-duck-duck-go +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://duckduckgo.com" +exit 0 # success diff --git a/Scripts/open-internet-archive.ps1 b/Scripts/open-internet-archive.ps1 new file mode 100755 index 00000000..6b5b407f --- /dev/null +++ b/Scripts/open-internet-archive.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens the Internet Archive website +.DESCRIPTION + This script launches the Web browser with the Internet Archive website. +.EXAMPLE + PS> ./open-internet-archive +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://archive.org" +exit 0 # success diff --git a/Scripts/open-space-weather.ps1 b/Scripts/open-space-weather.ps1 new file mode 100755 index 00000000..34d8ac2d --- /dev/null +++ b/Scripts/open-space-weather.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens the Space Weather website +.DESCRIPTION + This script launches the Web browser with the Space Weather website. +.EXAMPLE + PS> ./open-space-weather +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.spaceweather.com" +exit 0 # success diff --git a/Scripts/open-start-page.ps1 b/Scripts/open-start-page.ps1 new file mode 100755 index 00000000..c322308b --- /dev/null +++ b/Scripts/open-start-page.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens the Startpage website +.DESCRIPTION + This script launches the Web browser with the Startpage website. +.EXAMPLE + PS> ./open-start-page +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.startpage.com" +exit 0 # success diff --git a/Scripts/open-white-house.ps1 b/Scripts/open-white-house.ps1 new file mode 100755 index 00000000..eda166bc --- /dev/null +++ b/Scripts/open-white-house.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens the White House website +.DESCRIPTION + This script launches the Web browser with the White House website. +.EXAMPLE + PS> ./open-white-house +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.whitehouse.gov" +exit 0 # success