PowerShell/Scripts/say-quote.ps1
2021-10-13 10:36:18 +02:00

29 lines
724 B
PowerShell
Executable File

<#
.SYNOPSIS
Say a random quote by text-to-speech
.DESCRIPTION
This script selects a random quote in Data/quotes.csv and tells it by text-to-speech (TTS).
.EXAMPLE
PS> ./say-quote
(listen and learn)
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
$Table = import-csv "$PSScriptRoot/../Data/quotes.csv"
$Generator = New-Object System.Random
$Index = [int]$Generator.next(0, $Table.Count - 1)
$Quote = $Table[$Index].Quote
$Author = $Table[$Index].Author
& "$PSScriptRoot/speak-english.ps1" "$Quote (by $Author)"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}