From c19fcecc799c4a22b2618eb3a51c94e1127c2e84 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Thu, 18 Nov 2021 07:53:21 +0100 Subject: [PATCH] Add open-world-news.ps1 --- Scripts/open-world-news.ps1 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Scripts/open-world-news.ps1 diff --git a/Scripts/open-world-news.ps1 b/Scripts/open-world-news.ps1 new file mode 100644 index 00000000..9375c4f6 --- /dev/null +++ b/Scripts/open-world-news.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens Reuters World News website +.DESCRIPTION + This script launches the Web browser with the Reuters World News website. +.EXAMPLE + PS> ./open-world-news +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.reuters.com/news/archive/worldNews" +exit 0 # success