mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-16 19:50:45 +01:00
19 lines
369 B
PowerShell
19 lines
369 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Answers to 'see you'
|
|||
|
.DESCRIPTION
|
|||
|
This script says a reply to "see you" by text-to-speech (TTS).
|
|||
|
.EXAMPLE
|
|||
|
PS> ./see-you
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
$Reply = "Good bye.", "See you.", "Bye bye." | Get-Random
|
|||
|
|
|||
|
"$Reply"
|
|||
|
& "$PSScriptRoot/speak-english.ps1" "$Reply"
|
|||
|
exit 0 # success
|