mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-12 22:17:17 +02:00
Update check-vpn.ps1
This commit is contained in:
@ -2,11 +2,12 @@
|
||||
.SYNOPSIS
|
||||
Writes text in lowercase letters
|
||||
.DESCRIPTION
|
||||
This PowerShell script writes text in lowercase letters.
|
||||
This PowerShell script writes the given text in lowercase letters.
|
||||
.PARAMETER text
|
||||
Specifies the text to write
|
||||
.EXAMPLE
|
||||
PS> ./write-lowercase "Hello World"
|
||||
hello world
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
@ -15,7 +16,7 @@
|
||||
|
||||
param([string]$text = "")
|
||||
|
||||
if ($text -eq "" ) { $text = read-host "Enter the text to write" }
|
||||
if ($text -eq "" ) { $text = Read-Host "Enter the text to write" }
|
||||
|
||||
write-output $text.ToLower()
|
||||
Write-Output $text.ToLower()
|
||||
exit 0 # success
|
||||
|
Reference in New Issue
Block a user