mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-27 10:23:17 +01:00
19 lines
368 B
PowerShell
Executable File
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
|