PowerShell/Scripts/write-blue.ps1
2021-09-25 19:43:22 +02:00

21 lines
389 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