mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 09:04:18 +01:00
20 lines
385 B
PowerShell
Executable File
20 lines
385 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
write-uppercase.ps1 [<text>]
|
|
.DESCRIPTION
|
|
Writes the given text in uppercase letters.
|
|
.EXAMPLE
|
|
PS> .\write-uppercase.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-output $text.ToUpper()
|
|
exit 0
|