mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-05 06:48:25 +02:00
Update tell-quote.ps1
This commit is contained in:
parent
937739e4a1
commit
7055e9fef5
@ -2,9 +2,10 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Tells a quote by text-to-speech
|
Tells a quote by text-to-speech
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This PowerShell script selects a random quote in Data/quotes.csv and speaks it by text-to-speech (TTS).
|
This PowerShell script selects a random quote from Data/quotes.csv and speaks it by text-to-speech (TTS).
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./tell-quote
|
PS> ./tell-quote.ps1
|
||||||
|
(listen and enjoy)
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
@ -12,14 +13,14 @@
|
|||||||
#>
|
#>
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$Table = Import-CSV "$PSScriptRoot/../Data/quotes.csv"
|
$table = Import-CSV "$PSScriptRoot/../Data/quotes.csv"
|
||||||
|
|
||||||
$Generator = New-Object System.Random
|
$randomNumberGenerator = New-Object System.Random
|
||||||
$Index = [int]$Generator.next(0, $Table.Count - 1)
|
$row = [int]$randomNumberGenerator.next(0, $table.Count - 1)
|
||||||
$Quote = $Table[$Index].QUOTE
|
$quote = $table[$row].QUOTE
|
||||||
$Author = $Table[$Index].AUTHOR
|
$author = $table[$row].AUTHOR
|
||||||
|
|
||||||
& "$PSScriptRoot/speak-english.ps1" "$Quote (by $Author)"
|
& "$PSScriptRoot/speak-english.ps1" "$quote (by $author)"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
} catch {
|
} catch {
|
||||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
Reference in New Issue
Block a user