PowerShell/Scripts/hi.ps1

18 lines
313 B
PowerShell
Raw Normal View History

2021-12-04 13:39:59 +01:00
<#
.SYNOPSIS
Replies to "Hi"
.DESCRIPTION
2021-12-06 17:00:49 +01:00
This script replies to 'Hi' by text-to-speech (TTS).
2021-12-04 13:39:59 +01:00
.EXAMPLE
PS> ./hi
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
2021-12-06 17:00:49 +01:00
$Reply = "Hello, how can I help?"
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success