PowerShell/Scripts/good-evening.ps1
2021-11-18 07:38:28 +01:00

21 lines
475 B
PowerShell

<#
.SYNOPSIS
Say an answer to 'good evening'
.DESCRIPTION
This script answers "good evening" by text-to-speech (TTS).
.EXAMPLE
PS> ./good-evening
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
& "$PSScriptRoot/speak-english.ps1" "And a special good evening to you too"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}