2021-08-05 14:53:40 +02:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
2021-08-08 11:02:12 +02:00
|
|
|
|
write-quote.ps1
|
2021-08-05 14:53:40 +02:00
|
|
|
|
.DESCRIPTION
|
2021-08-08 11:02:12 +02:00
|
|
|
|
Writes a random quote to the console.
|
2021-08-05 14:53:40 +02:00
|
|
|
|
.EXAMPLE
|
2021-08-08 11:02:12 +02:00
|
|
|
|
PS> .\write-quote.ps1
|
2021-08-05 14:53:40 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz
|
|
|
|
|
License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
2021-08-08 11:02:12 +02:00
|
|
|
|
$Table = import-csv "$PSScriptRoot/../Data/quotes.csv"
|
|
|
|
|
$NumRows = $Table.count
|
2021-08-05 14:53:40 +02:00
|
|
|
|
|
|
|
|
|
$Generator = New-Object System.Random
|
2021-08-08 11:02:12 +02:00
|
|
|
|
$Index = [int]$Generator.next(0,$NumRows - 1)
|
|
|
|
|
$Quote = $Table[$Index].Quote
|
|
|
|
|
$Author = $Table[$Index].Author
|
2021-08-05 14:53:40 +02:00
|
|
|
|
|
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
|
|
|
|
|
2021-08-05 14:53:40 +02:00
|
|
|
|
exit 0
|
|
|
|
|
} catch {
|
|
|
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
|
exit 1
|
|
|
|
|
}
|