Rename to write-moon.ps1

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

View File

@ -1,10 +1,10 @@
<#
.SYNOPSIS
Prints the current moon phase
Writes the moon phase
.DESCRIPTION
This PowerShell script prints the current moon phase.
This PowerShell script writes the current moon phase to the console.
.EXAMPLE
PS> ./moon.ps1
PS> ./write-moon.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
@ -17,4 +17,4 @@ try {
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
}