Update write-quote.ps1

This commit is contained in:
Markus Fleschutz 2024-05-06 17:42:12 +02:00
parent 75672674a9
commit 18a6d1fcf5

View File

@ -2,11 +2,11 @@
.SYNOPSIS .SYNOPSIS
Writes a random quote Writes a random quote
.DESCRIPTION .DESCRIPTION
This PowerShell script selects a random quote from Data/quotes.csv and writes it to the console. This PowerShell script selects a random quote from .../data/quotes.csv and writes it to the console.
.EXAMPLE .EXAMPLE
PS> ./write-quote.ps1 PS> ./write-quote.ps1
We must become the change we want to see. We must become the change we want to see.
- MAHATMA GANDHI - Mahatma Gandhi
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES
@ -19,11 +19,12 @@ try {
$randomNumberGenerator = New-Object System.Random $randomNumberGenerator = New-Object System.Random
$row = [int]$randomNumberGenerator.next(0, $table.Count - 1) $row = [int]$randomNumberGenerator.next(0, $table.Count - 1)
$quote = $table[$row].QUOTE $quote = $table[$row].QUOTE
$author = $table[$row].AUTHOR.toUpper() $author = $table[$row].AUTHOR
$spaces = " " $spaces = " "
$spaces = $spaces.Substring(0, $quote.Length - $author.Length) $spaces = $spaces.Substring(0, $quote.Length - $author.Length)
Write-Host "`n"'“'"$quote"'„'"`n$spaces- $author" -foregroundColor Magenta Write-Host "`n"'“'"$quote"'„'"" -foregroundColor Green
Write-Host "$spaces- $author" -foregroundColor Blue
exit 0 # success exit 0 # success
} catch { } catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"