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

21 lines
461 B
PowerShell

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