PowerShell/Scripts/write-vertical.ps1

28 lines
550 B
PowerShell
Raw Normal View History

2020-12-29 15:14:21 +01:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
write-vertical.ps1 [<text>]
.DESCRIPTION
Writes the given text in vertical direction
.EXAMPLE
PS> .\write-vertical.ps1 "Hello World"
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
2020-12-29 15:14:21 +01:00
#>
2020-12-18 15:53:17 +01:00
2021-07-15 15:51:22 +02:00
param([string]$Text = "")
2020-12-18 15:53:17 +01:00
try {
2021-07-15 15:51:22 +02:00
if ($Text -eq "" ) { $Text = read-host "Enter the text to write" }
2020-12-18 15:53:17 +01:00
[char[]]$TextArray = $Text
foreach($Char in $TextArray) {
write-output $Char
}
exit 0
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-18 15:53:17 +01:00
exit 1
}