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