From fa7142e8623a97659517b3ad0c5d6dac7d26368b Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 29 Oct 2021 13:25:36 +0200 Subject: [PATCH] Add several scripts --- Scripts/open-slash-dot.ps1 | 15 +++++++++++++++ Scripts/open-windy.ps1 | 15 +++++++++++++++ Scripts/open-wolfram-alpha.ps1 | 15 +++++++++++++++ 3 files changed, 45 insertions(+) create mode 100755 Scripts/open-slash-dot.ps1 create mode 100755 Scripts/open-windy.ps1 create mode 100755 Scripts/open-wolfram-alpha.ps1 diff --git a/Scripts/open-slash-dot.ps1 b/Scripts/open-slash-dot.ps1 new file mode 100755 index 00000000..ac9a4a88 --- /dev/null +++ b/Scripts/open-slash-dot.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens the slashdot website +.DESCRIPTION + This script launches the Web browser with the slashdot.org website. +.EXAMPLE + PS> ./open-slash-dot +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://slashdot.org" +exit 0 # success diff --git a/Scripts/open-windy.ps1 b/Scripts/open-windy.ps1 new file mode 100755 index 00000000..082e609d --- /dev/null +++ b/Scripts/open-windy.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens windy.com +.DESCRIPTION + This script launches the Web browser with the windy.com website. +.EXAMPLE + PS> ./open-windy +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.windy.com" +exit 0 # success diff --git a/Scripts/open-wolfram-alpha.ps1 b/Scripts/open-wolfram-alpha.ps1 new file mode 100755 index 00000000..5aa6407b --- /dev/null +++ b/Scripts/open-wolfram-alpha.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens WolframAlpha +.DESCRIPTION + This script launches the Web browser with the WolframAlpha website. +.EXAMPLE + PS> ./open-wolfram-alpha +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.wolframalpha.com" +exit 0 # success