PowerShell/Scripts/see-you.ps1

18 lines
357 B
PowerShell
Raw Normal View History

2021-12-01 13:58:43 +01:00
<#
.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
2021-12-06 18:48:32 +01:00
& "$PSScriptRoot/give-reply.ps1" "$Reply"
2021-12-01 13:58:43 +01:00
exit 0 # success