PowerShell/Scripts/thank-you.ps1
2021-12-06 17:00:49 +01:00

18 lines
377 B
PowerShell
Executable File

<#
.SYNOPSIS
Replies to 'thank you'
.DESCRIPTION
This script replies to 'thank you' by text-to-speech (TTS).
.EXAMPLE
PS> ./thank-you
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "It's a pleasure.", "Never mind.", "Pleasure is mine." | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success