PowerShell/Scripts/merry-christmas.ps1
2022-01-29 12:47:46 +01:00

18 lines
411 B
PowerShell

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