mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-14 20:14:00 +01:00
18 lines
313 B
PowerShell
18 lines
313 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Replies to "Hi"
|
|
.DESCRIPTION
|
|
This script replies to 'Hi' by text-to-speech (TTS).
|
|
.EXAMPLE
|
|
PS> ./hi
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
$Reply = "Hello, how can I help?"
|
|
|
|
& "$PSScriptRoot/give-reply.ps1" "$Reply"
|
|
exit 0 # success
|