mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-06-18 19:07:04 +02:00
Add show-planet-*.ps1 scripts
This commit is contained in:
parent
e9579321f2
commit
03d492df4d
15
Scripts/show-planet-earth.ps1
Executable file
15
Scripts/show-planet-earth.ps1
Executable 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
15
Scripts/show-planet-mars.ps1
Executable 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
15
Scripts/show-planet-merkur.ps1
Executable 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
15
Scripts/show-planet-pluto.ps1
Executable 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
15
Scripts/show-planet-venus.ps1
Executable 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
|
Loading…
x
Reference in New Issue
Block a user