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])"