From 7dc0a82db427c058684c08393fc370fa4a3f05ee Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Thu, 18 Nov 2021 15:30:59 +0100 Subject: [PATCH] Add open-wired-website.ps1 --- ...n-slash-dot.ps1 => open-slash-dot-website.ps1} | 6 +++--- Scripts/open-wired-website.ps1 | 15 +++++++++++++++ 2 files changed, 18 insertions(+), 3 deletions(-) rename Scripts/{open-slash-dot.ps1 => open-slash-dot-website.ps1} (63%) create mode 100644 Scripts/open-wired-website.ps1 diff --git a/Scripts/open-slash-dot.ps1 b/Scripts/open-slash-dot-website.ps1 similarity index 63% rename from Scripts/open-slash-dot.ps1 rename to Scripts/open-slash-dot-website.ps1 index ac9a4a88..73cae557 100755 --- a/Scripts/open-slash-dot.ps1 +++ b/Scripts/open-slash-dot-website.ps1 @@ -1,10 +1,10 @@ <# .SYNOPSIS - Opens the slashdot website + Opens the Slashdot website .DESCRIPTION - This script launches the Web browser with the slashdot.org website. + This script launches the Web browser with the Slashdot website. .EXAMPLE - PS> ./open-slash-dot + PS> ./open-slash-dot-website .NOTES Author: Markus Fleschutz · License: CC0 .LINK diff --git a/Scripts/open-wired-website.ps1 b/Scripts/open-wired-website.ps1 new file mode 100644 index 00000000..37df19a9 --- /dev/null +++ b/Scripts/open-wired-website.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens the WIRED website +.DESCRIPTION + This script launches the Web browser with the WIRED website. +.EXAMPLE + PS> ./open-wired-website +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.wired.com/" +exit 0 # success