Add 2 scripts

This commit is contained in:
Markus Fleschutz 2021-11-18 07:24:45 +01:00
parent a966cf086f
commit 3da0c69477
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens the DistroWatch website
.DESCRIPTION
This script launches the Web browser with the DistroWatch website.
.EXAMPLE
PS> ./open-distro-watch
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://distrowatch.com/"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens the WhatsApp website
.DESCRIPTION
This script launches the Web browser with the WhatsApp website.
.EXAMPLE
PS> ./open-whats-app
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://www.whatsapp.com/"
exit 0 # success