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

18 lines
358 B
PowerShell

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