PowerShell/Scripts/speak-quote.ps1

29 lines
659 B
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
.SYNOPSIS
speak-quote.ps1
.DESCRIPTION
2021-09-27 08:35:45 +02:00
Speaks a random quote by text-to-speech (TTS)
.EXAMPLE
2021-09-27 08:35:45 +02:00
PS> ./speak-quote
2021-08-29 17:50:03 +02:00
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
$Table = import-csv "$PSScriptRoot/../Data/quotes.csv"
$NumRows = $Table.count
$Generator = New-Object System.Random
$Index = [int]$Generator.next(0,$NumRows - 1)
$Quote = $Table[$Index].Quote
$Author = $Table[$Index].Author
& "$PSScriptRoot/speak-english.ps1" "$Quote (by $Author)"
2021-09-27 10:09:45 +02:00
exit 0 # success
} catch {
2021-09-16 20:19:10 +02:00
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}