PowerShell/Scripts/see-you-later.ps1

18 lines
385 B
PowerShell
Raw Normal View History

2021-12-11 12:59:35 +01:00
<#
.SYNOPSIS
Answers to 'see you later'
.DESCRIPTION
2022-01-30 10:49:30 +01:00
This PowerShell script says a reply to "see you later" by text-to-speech (TTS).
2021-12-11 12:59:35 +01:00
.EXAMPLE
PS> ./see-you-later
.LINK
https://github.com/fleschutz/PowerShell
2022-01-30 10:49:30 +01:00
.NOTES
Author: Markus Fleschutz / License: CC0
2021-12-11 12:59:35 +01:00
#>
$Reply = "Good bye.", "See you.", "Bye bye." | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success