mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 09:04:18 +01:00
18 lines
411 B
PowerShell
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
|