2021-09-27 10:38:12 +02:00
|
|
|
|
<#
|
2021-08-08 11:02:12 +02:00
|
|
|
|
.SYNOPSIS
|
2021-11-24 13:13:29 +01:00
|
|
|
|
Tells a quote by text-to-speech
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2021-11-24 13:13:29 +01:00
|
|
|
|
This script selects a random quote in Data/quotes.csv and speaks it by text-to-speech (TTS).
|
2021-08-08 11:02:12 +02:00
|
|
|
|
.EXAMPLE
|
2021-11-24 13:13:29 +01:00
|
|
|
|
PS> ./tell-quote
|
2021-08-29 17:50:03 +02:00
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz · License: CC0
|
2021-08-08 11:02:12 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$Table = import-csv "$PSScriptRoot/../Data/quotes.csv"
|
|
|
|
|
|
|
|
|
|
$Generator = New-Object System.Random
|
2021-10-07 11:04:44 +02:00
|
|
|
|
$Index = [int]$Generator.next(0, $Table.Count - 1)
|
2021-08-08 11:02:12 +02:00
|
|
|
|
$Quote = $Table[$Index].Quote
|
|
|
|
|
$Author = $Table[$Index].Author
|
2021-12-06 18:48:32 +01:00
|
|
|
|
$Reply = "$Quote (by $Author)"
|
2021-08-08 11:02:12 +02:00
|
|
|
|
|
2021-12-06 18:48:32 +01:00
|
|
|
|
& "$PSScriptRoot/give-reply.ps1" "$Reply"
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-08-08 11:02:12 +02:00
|
|
|
|
} catch {
|
2021-09-16 20:19:10 +02:00
|
|
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
2021-08-08 11:02:12 +02:00
|
|
|
|
exit 1
|
|
|
|
|
}
|