Add several scripts

This commit is contained in:
Markus Fleschutz 2021-10-29 13:25:36 +02:00
parent abb40a9566
commit fa7142e862
3 changed files with 45 additions and 0 deletions

15
Scripts/open-slash-dot.ps1 Executable file
View File

@ -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

15
Scripts/open-windy.ps1 Executable file
View File

@ -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

15
Scripts/open-wolfram-alpha.ps1 Executable file
View File

@ -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