PowerShell/Scripts/write-lowercase.ps1
2021-10-16 16:50:10 +02:00

22 lines
442 B
PowerShell
Executable File

<#
.SYNOPSIS
Writes text in lowercase letters
.DESCRIPTION
This script writes text in lowercase letters.
.PARAMETER text
Specifies the text to write
.EXAMPLE
PS> ./write-lowercase "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.ToLower()
exit 0 # success