diff --git a/Scripts/bye-bye.ps1 b/Scripts/bye-bye.ps1 new file mode 100644 index 00000000..e489406c --- /dev/null +++ b/Scripts/bye-bye.ps1 @@ -0,0 +1,18 @@ +<# +.SYNOPSIS + Say an answer to 'bye bye' +.DESCRIPTION + This script answers to "bye bye" by text-to-speech (TTS). +.EXAMPLE + PS> ./bye-bye +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +$Answer = "Good bye.", "See you.", "Bye bye." | Get-Random + +write-output "$Answer" +& "$PSScriptRoot/speak-english.ps1" "$Answer" +exit 0 # success diff --git a/Scripts/good-bye.ps1 b/Scripts/good-bye.ps1 index 2439c504..df714cb1 100644 --- a/Scripts/good-bye.ps1 +++ b/Scripts/good-bye.ps1 @@ -11,7 +11,7 @@ https://github.com/fleschutz/PowerShell #> -$Answer = "Good bye.", "See you." | Get-Random +$Answer = "Good bye.", "See you.", "Bye bye." | Get-Random write-output "$Answer" & "$PSScriptRoot/speak-english.ps1" "$Answer"