From 3da0c69477942306d66b0b11e73212a26e368547 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Thu, 18 Nov 2021 07:24:45 +0100 Subject: [PATCH] Add 2 scripts --- Scripts/open-distro-watch.ps1 | 15 +++++++++++++++ Scripts/open-whats-app.ps1 | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 Scripts/open-distro-watch.ps1 create mode 100644 Scripts/open-whats-app.ps1 diff --git a/Scripts/open-distro-watch.ps1 b/Scripts/open-distro-watch.ps1 new file mode 100644 index 00000000..80a1709b --- /dev/null +++ b/Scripts/open-distro-watch.ps1 @@ -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 diff --git a/Scripts/open-whats-app.ps1 b/Scripts/open-whats-app.ps1 new file mode 100644 index 00000000..0040316b --- /dev/null +++ b/Scripts/open-whats-app.ps1 @@ -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