From eda717a62663065568b506097e2065a03351075e Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 3 Nov 2021 19:51:32 +0100 Subject: [PATCH] Add show-new-york-city.ps1 --- Scripts/open-google-maps.ps1 | 2 +- Scripts/show-new-york-city.ps1 | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100755 Scripts/show-new-york-city.ps1 diff --git a/Scripts/open-google-maps.ps1 b/Scripts/open-google-maps.ps1 index 60224f1f..0c49fbbd 100755 --- a/Scripts/open-google-maps.ps1 +++ b/Scripts/open-google-maps.ps1 @@ -11,5 +11,5 @@ https://github.com/fleschutz/PowerShell #> -& "$PSScriptRoot/open-browser.ps1" "https://google.de/maps" +& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps" exit 0 # success diff --git a/Scripts/show-new-york-city.ps1 b/Scripts/show-new-york-city.ps1 new file mode 100755 index 00000000..22b346e3 --- /dev/null +++ b/Scripts/show-new-york-city.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Show NYC in Google Maps +.DESCRIPTION + This script launches the Web browser with Google Maps at New York City. +.EXAMPLE + PS> ./show-new-york-city +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/place/New+York+City" +exit 0 # success