PowerShell/Scripts/write-quote.ps1

34 lines
818 B
PowerShell
Raw Normal View History

<#
.SYNOPSIS
write-quote.ps1
.DESCRIPTION
2021-09-25 19:43:22 +02:00
Writes a random quote to the console
.EXAMPLE
2021-09-25 19:43:22 +02:00
PS> ./write-quote
2021-08-29 17:50:03 +02:00
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
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 {
2021-09-16 20:19:10 +02:00
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}