mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-16 11:40:53 +01:00
17 lines
359 B
PowerShell
17 lines
359 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Replies to "Come on"
|
|
.DESCRIPTION
|
|
This script replies to 'Come on' by text-to-speech (TTS).
|
|
.EXAMPLE
|
|
PS> ./come-on
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
$Reply = "I'm sorry.", "I'm so sorry.", "Mea culpa!" | Get-Random
|
|
& "$PSScriptRoot/give-reply.ps1" "$Reply"
|
|
exit 0 # success
|