PowerShell/Scripts/write-blue.ps1
Markus Fleschutz b653133853 Add UTF-8 BOM
2021-09-27 10:38:12 +02:00

21 lines
399 B
PowerShell
Executable File

<#
.SYNOPSIS
write-blue.ps1 [<text>]
.DESCRIPTION
Writes the given text in a blue foreground color
.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