Rename to write-moon.ps1

This commit is contained in:
Markus Fleschutz
2023-08-14 20:34:06 +02:00
parent 499c86aaab
commit 41be046841

20
Scripts/write-moon.ps1 Executable file
View File

@ -0,0 +1,20 @@
<#
.SYNOPSIS
Writes the moon phase
.DESCRIPTION
This PowerShell script writes the current moon phase to the console.
.EXAMPLE
PS> ./write-moon.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
(Invoke-WebRequest http://wttr.in/Moon -userAgent "curl" -useBasicParsing).Content
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}