PowerShell/Scripts/check-year.ps1
2021-12-11 17:44:30 +01:00

23 lines
501 B
PowerShell

<#
.SYNOPSIS
Determines the current year
.DESCRIPTION
This script determines and speaks the current year by text-to-speech (TTS).
.EXAMPLE
PS> ./check-year
✔️ It's 2021.
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
$Year = (Get-Date).Year
& "$PSScriptRoot/give-reply.ps1" "It's $Year."
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}