PowerShell/Scripts/how-are-you.ps1
2021-11-27 14:16:50 +01:00

19 lines
368 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
#>
$Answer = "I'm fine, thanks."
& "$PSScriptRoot/speak-english.ps1" "$Answer"
write-output "$Answer"
exit 0 # success