PowerShell/Scripts/write-green.ps1
2021-08-29 17:50:03 +02:00

20 lines
397 B
PowerShell
Executable File

<#
.SYNOPSIS
write-green.ps1 [<text>]
.DESCRIPTION
Writes the given text in a green foreground color.
.EXAMPLE
PS> .\write-green.ps1 "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 green "$text"
exit 0