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

18 lines
401 B
PowerShell

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