PowerShell/Scripts/good-night.ps1

19 lines
467 B
PowerShell
Raw Normal View History

<#
.SYNOPSIS
2021-12-01 09:57:36 +01:00
Answers to 'good night'
.DESCRIPTION
2021-12-01 09:57:36 +01:00
This script says a reply to "good night" by text-to-speech (TTS).
.EXAMPLE
PS> ./good-night
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
2021-12-01 09:57:36 +01:00
$Reply = "Good night to you, too.", "Good night to you, my friend.", "Have a good night. Sleep well.", "Good night and sweet dreams." | Get-Random
2021-11-26 14:46:14 +01:00
2021-12-01 09:57:36 +01:00
"$Reply"
& "$PSScriptRoot/speak-english.ps1" "$Reply"
2021-11-26 14:46:14 +01:00
exit 0 # success