PowerShell/Scripts/write-blue.ps1
2021-10-04 21:29:23 +02:00

21 lines
389 B
PowerShell
Executable File

<#
.SYNOPSIS
Writes text in a blue foreground color
.DESCRIPTION
write-blue.ps1 [<text>]
.EXAMPLE
PS> ./write-blue "Hello World"
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([string]$text = "")
if ($text -eq "" ) { $text = read-host "Enter the text to write" }
write-host -foregroundColor blue "$text"
exit 0 # success