PowerShell/Scripts/come-on.ps1
2022-07-05 14:38:25 +02:00

17 lines
369 B
PowerShell
Executable File

<#
.SYNOPSIS
Replies to "Come on"
.DESCRIPTION
This PowerShell script replies to 'Come on' by text-to-speech (TTS).
.EXAMPLE
PS> ./come-on
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#>
$Reply = "I'm sorry.", "I'm so sorry.", "Mea culpa!" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success