PowerShell/Scripts/write-rot13.ps1

39 lines
946 B
PowerShell
Raw Normal View History

2021-08-26 10:46:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
write-rot13.ps1 [<text>]
.DESCRIPTION
2021-09-25 19:43:22 +02:00
Writes the given text encoded or decoded with ROT13
2021-07-13 21:10:02 +02:00
.EXAMPLE
2021-09-25 19:43:22 +02:00
PS> ./write-rot13 "Hello World"
2021-08-29 17:50:03 +02:00
.NOTES
Author: Markus Fleschutz · License: CC0
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2020-12-29 15:14:21 +01:00
#>
2020-12-22 09:48:18 +01:00
2021-08-29 17:50:03 +02:00
param([string]$text = "")
2020-12-22 09:48:18 +01:00
2021-08-29 17:50:03 +02:00
function ROT13 { param([string]$text)
$text.ToCharArray() | ForEach-Object {
2020-12-22 09:48:18 +01:00
if ((([int] $_ -ge 97) -and ([int] $_ -le 109)) -or (([int] $_ -ge 65) -and ([int] $_ -le 77))) {
$Result += [char] ([int] $_ + 13);
} elseif ((([int] $_ -ge 110) -and ([int] $_ -le 122)) -or (([int] $_ -ge 78) -and ([int] $_ -le 90))) {
$Result += [char] ([int] $_ - 13);
} else {
$Result += $_
}
}
return $Result
}
try {
2021-08-29 17:50:03 +02:00
if ($text -eq "" ) { $text = read-host "Enter text to write" }
$Result = ROT13 $text
2020-12-22 09:48:18 +01:00
write-output $Result
exit 0
} catch {
2021-09-16 20:19:10 +02:00
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
2020-12-22 09:48:18 +01:00
exit 1
}