PowerShell/Scripts/how-are-you.ps1
2021-11-18 11:34:20 +01:00

21 lines
454 B
PowerShell
Executable File

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