PowerShell/Scripts/write-green.ps1

21 lines
395 B
PowerShell
Raw Normal View History

2021-08-26 10:46:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
write-green.ps1 [<text>]
.DESCRIPTION
Writes the given text in a green foreground color
.EXAMPLE
PS> .\write-green.ps1 "Hello World"
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2021-08-03 15:53:57 +02:00
Author: Markus Fleschutz
License: CC0
2020-12-29 15:14:21 +01:00
#>
2021-07-15 15:51:22 +02:00
param([string]$Text = "")
2021-04-07 15:17:49 +02:00
if ($Text -eq "" ) { $Text = read-host "Enter the text to write" }
2021-04-21 19:53:52 +02:00
write-host -foregroundColor green "$Text"
exit 0