Updated the Markdown manuals

This commit is contained in:
Markus Fleschutz
2024-05-19 10:25:56 +02:00
parent c24030c909
commit 439fbf5bfa
621 changed files with 2430 additions and 1289 deletions

View File

@ -1,7 +1,7 @@
Script: *write-quote.ps1*
========================
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.
Parameters
----------
@ -18,7 +18,7 @@ Example
```powershell
PS> ./write-quote.ps1
We must become the change we want to see.
- MAHATMA GANDHI
- Mahatma Gandhi
```
@ -37,11 +37,11 @@ Script Content
.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
@ -54,11 +54,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])"
@ -66,4 +67,4 @@ try {
}
```
*(generated by convert-ps2md.ps1 using the comment-based help of write-quote.ps1 as of 03/27/2024 17:36:33)*
*(generated by convert-ps2md.ps1 using the comment-based help of write-quote.ps1 as of 05/19/2024 10:25:27)*