mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 20:44:17 +01:00
19 lines
376 B
PowerShell
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
|