mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
21 lines
396 B
PowerShell
Executable File
21 lines
396 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
|