mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
23 lines
501 B
PowerShell
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
|
|
}
|