mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-17 04:00:46 +01:00
16 lines
322 B
PowerShell
Executable File
16 lines
322 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Answers 'I'll be back'
|
|
.DESCRIPTION
|
|
This script answers "I'll be back" by text-to-speech (TTS).
|
|
.EXAMPLE
|
|
PS> ./i-will-be-back
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/speak-english.ps1" "Hasta la vista, baby."
|
|
exit 0 # success
|