mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
16 lines
300 B
PowerShell
16 lines
300 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
|
|
#>
|
|
|
|
& "$PSScriptRoot/give-reply.ps1" "I'm so sorry."
|
|
exit 0 # success
|