PowerShell/Scripts/write-red.ps1
2020-12-29 14:14:21 +00:00

21 lines
483 B
PowerShell
Executable File

#!/snap/bin/powershell
<#
.SYNTAX ./write-red.ps1 [<text>]
.DESCRIPTION writes the given text in a red foreground color
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param([string]$Text = "")
try {
if ($Text -eq "" ) {
[string]$Text = read-host "Enter text to write"
}
write-host -foregroundcolor red $Text
exit 0
} catch {
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}