From 18a6d1fcf5c5e32e62430bf2b59550a5b28d0365 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 6 May 2024 17:42:12 +0200 Subject: [PATCH] Update write-quote.ps1 --- scripts/write-quote.ps1 | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/write-quote.ps1 b/scripts/write-quote.ps1 index 97b57168..98b59ec4 100755 --- a/scripts/write-quote.ps1 +++ b/scripts/write-quote.ps1 @@ -2,11 +2,11 @@ .SYNOPSIS Writes a random quote .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 PS> ./write-quote.ps1 “ We must become the change we want to see. „ - - MAHATMA GANDHI + - Mahatma Gandhi .LINK https://github.com/fleschutz/PowerShell .NOTES @@ -19,11 +19,12 @@ try { $randomNumberGenerator = New-Object System.Random $row = [int]$randomNumberGenerator.next(0, $table.Count - 1) $quote = $table[$row].QUOTE - $author = $table[$row].AUTHOR.toUpper() + $author = $table[$row].AUTHOR $spaces = " " $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 } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"