aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/rot2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rot b/scripts/rot
index aae6ec8..636897c 100755
--- a/scripts/rot
+++ b/scripts/rot
@@ -36,7 +36,7 @@ BEGIN {
{
result="";
split($0, chars, "");
- for (i=1;i<=length($0);i++) {
+ for (i=2;i<=length($0);i++) {
if (chars[i] in cipher_map) {
result=result cipher_map[chars[i]];
}