PowerShell/Scripts/write-quote.ps1

35 lines
808 B
PowerShell
Raw Normal View History

<#
.SYNOPSIS
write-quote.ps1
.DESCRIPTION
Writes a random quote to the console.
.EXAMPLE
PS> .\write-quote.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz
License: CC0
#>
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
2021-08-16 16:55:24 +02:00
""
2021-08-09 10:52:29 +02:00
write-host '“'$Quote' ”'
$Spaces = " "
$Spaces = $Spaces.Substring(0, $Quote.Length - $Author.Length)
2021-08-16 16:55:24 +02:00
"$Spaces $($Author.toUpper())"
2021-08-09 10:52:29 +02:00
exit 0
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}