PowerShell/Scripts/merry-christmas.ps1

18 lines
411 B
PowerShell
Raw Normal View History

2021-12-10 19:28:42 +01:00
<#
.SYNOPSIS
2021-12-11 15:22:25 +01:00
Replies to "Merry Christmas"
2021-12-10 19:28:42 +01:00
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script replies to 'Merry Christmas' by text-to-speech (TTS).
2021-12-10 19:28:42 +01:00
.EXAMPLE
2021-12-11 15:22:25 +01:00
PS> ./merry-christmas
2021-12-10 19:28:42 +01:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
Author: Markus Fleschutz / License: CC0
2021-12-10 19:28:42 +01:00
#>
2021-12-11 17:20:46 +01:00
$Reply = "Merry Christmas to you too!", "Happy Christmas to you too!" | Get-Random
2021-12-10 19:28:42 +01:00
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success