PowerShell/Scripts/merry-christmas.ps1

18 lines
414 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
2022-09-06 21:42:04 +02:00
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
2022-11-18 16:54:04 +01:00
& "$PSScriptRoot/speak-english.ps1" "$Reply"
2021-12-10 19:28:42 +01:00
exit 0 # success