mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-08 20:54:38 +02:00
Add some show-*-city.ps1
This commit is contained in:
8
Scripts/show-lissabon-city.ps1 → Scripts/show-calgary-city.ps1
Executable file → Normal file
8
Scripts/show-lissabon-city.ps1 → Scripts/show-calgary-city.ps1
Executable file → Normal file
@ -1,15 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Shows Lissabon city in Google Maps
|
||||
Shows Calgary city in Google Maps
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with Google Maps at Lissabon city (Portugal).
|
||||
This script launches the Web browser with Google Maps at Calgary city (Canada).
|
||||
.EXAMPLE
|
||||
PS> ./show-lissabon-city
|
||||
PS> ./show-calgary-city
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "https://www.google.com/maps/place/Lissabon"
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "https://www.google.com/maps/place/Calgary"
|
||||
exit 0 # success
|
15
Scripts/show-honolulu-city.ps1
Normal file
15
Scripts/show-honolulu-city.ps1
Normal file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Shows Honolulu city in Google Maps
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with Google Maps at Honolulu city (USA).
|
||||
.EXAMPLE
|
||||
PS> ./show-honolulu-city
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "https://www.google.com/maps/place/Honolulu"
|
||||
exit 0 # success
|
15
Scripts/show-lisbon-city.ps1
Executable file
15
Scripts/show-lisbon-city.ps1
Executable file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Shows Lisbon city in Google Maps
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with Google Maps at Lisbon city (Portugal).
|
||||
.EXAMPLE
|
||||
PS> ./show-lisbon-city
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "https://www.google.com/maps/place/Lisbon"
|
||||
exit 0 # success
|
Reference in New Issue
Block a user