2021-09-27 10:38:12 +02:00
|
|
|
|
<#
|
2021-08-05 14:53:40 +02:00
|
|
|
|
.SYNOPSIS
|
2022-12-02 09:24:38 +01:00
|
|
|
|
Writes a quote to the console
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2022-01-30 10:49:30 +01:00
|
|
|
|
This PowerShell script writes a random quote to the console.
|
2021-08-05 14:53:40 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-25 19:43:22 +02:00
|
|
|
|
PS> ./write-quote
|
2021-08-05 14:53:40 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-09-06 21:42:04 +02:00
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
2021-08-05 14:53:40 +02:00
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
2022-12-02 09:24:38 +01:00
|
|
|
|
$Table = Import-CSV "$PSScriptRoot/../Data/quotes.csv"
|
2021-08-05 14:53:40 +02:00
|
|
|
|
|
|
|
|
|
$Generator = New-Object System.Random
|
2021-10-18 07:26:08 +02:00
|
|
|
|
$Index = [int]$Generator.next(0, $Table.Count - 1)
|
2022-12-02 09:24:38 +01:00
|
|
|
|
$Quote = $Table[$Index].QUOTE
|
|
|
|
|
$Author = $Table[$Index].AUTHOR
|
2021-08-05 14:53:40 +02:00
|
|
|
|
|
2021-08-16 16:55:24 +02:00
|
|
|
|
""
|
2022-12-02 09:24:38 +01:00
|
|
|
|
Write-Host '“'$Quote' ”'
|
2021-08-09 10:52:29 +02:00
|
|
|
|
$Spaces = " "
|
|
|
|
|
$Spaces = $Spaces.Substring(0, $Quote.Length - $Author.Length)
|
2022-12-02 09:24:38 +01:00
|
|
|
|
"$Spaces $($Author.toUpper())"
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-08-05 14:53:40 +02:00
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-08-05 14:53:40 +02:00
|
|
|
|
exit 1
|
|
|
|
|
}
|