PowerShell/Scripts/i-will-be-back.ps1

18 lines
344 B
PowerShell
Raw Normal View History

2021-11-24 13:26:13 +01:00
<#
.SYNOPSIS
2021-12-06 17:00:49 +01:00
Replies to 'I'll be back'
2021-11-24 13:26:13 +01:00
.DESCRIPTION
2021-12-06 17:00:49 +01:00
This script replies to "I'll be back" by text-to-speech (TTS).
2021-11-24 13:26:13 +01:00
.EXAMPLE
PS> ./i-will-be-back
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
2021-12-06 17:00:49 +01:00
$Reply = "Hasta la vista, baby."
2021-11-27 14:16:50 +01:00
2021-12-06 17:00:49 +01:00
& "$PSScriptRoot/give-reply.ps1" "$Reply"
2021-11-24 13:26:13 +01:00
exit 0 # success