PowerShell/Scripts/good-evening.ps1
2021-12-01 09:57:36 +01:00

19 lines
376 B
PowerShell

<#
.SYNOPSIS
Answers to 'good evening'
.DESCRIPTION
This script says a reply to "good evening" by text-to-speech (TTS).
.EXAMPLE
PS> ./good-evening
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "And a special good evening to you too."
"$Reply"
& "$PSScriptRoot/speak-english.ps1" "$Reply"
exit 0 # success