mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
17 lines
309 B
PowerShell
17 lines
309 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Replies to "Say hello"
|
|
.DESCRIPTION
|
|
This script replies to "Say hello" by text-to-speech (TTS).
|
|
.EXAMPLE
|
|
PS> ./say-hello
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/give-reply.ps1" "Hello everyone."
|
|
exit 0 # success
|
|
|