Add show-planet-*.ps1 scripts

This commit is contained in:
Markus Fleschutz 2021-11-19 12:22:03 +01:00
parent e9579321f2
commit 03d492df4d
5 changed files with 75 additions and 0 deletions

15
Scripts/show-planet-earth.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows planet Earth in Google Maps
.DESCRIPTION
This script launches the Web browser and shows planet Earth in Google Maps.
.EXAMPLE
PS> ./show-planet-earth
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/space/earth"
exit 0 # success

15
Scripts/show-planet-mars.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows planet Mars in Google Maps
.DESCRIPTION
This script launches the Web browser and shows planet Mars in Google Maps.
.EXAMPLE
PS> ./show-planet-mars
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/space/mars"
exit 0 # success

15
Scripts/show-planet-merkur.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows planet Merkur in Google Maps
.DESCRIPTION
This script launches the Web browser and shows planet Merkur in Google Maps.
.EXAMPLE
PS> ./show-planet-merkur
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/space/mercury"
exit 0 # success

15
Scripts/show-planet-pluto.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows planet Pluto in Google Maps
.DESCRIPTION
This script launches the Web browser and shows planet Pluto in Google Maps.
.EXAMPLE
PS> ./show-planet-pluto
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/space/pluto"
exit 0 # success

15
Scripts/show-planet-venus.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows planet Venus in Google Maps
.DESCRIPTION
This script launches the Web browser and shows planet Venus in Google Maps.
.EXAMPLE
PS> ./show-planet-venus
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/space/venus"
exit 0 # success