PowerShell/Scripts/happy-thanksgiving.ps1
Markus Fleschutz 7a332d2b1d Fix typo
2021-12-11 17:20:46 +01:00

18 lines
382 B
PowerShell

<#
.SYNOPSIS
Replies to "Happy Thanksgiving"
.DESCRIPTION
This script replies to 'Happy Thanksgiving' by text-to-speech (TTS).
.EXAMPLE
PS> ./happy-thanksgiving
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "Happy Thanksgiving to you too!" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success