aboutsummaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-07-06 10:08:34 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-07-06 10:08:34 +1200
commit8ebdaf8e135bd1c1b4383d632cfa1dd8132d42d4 (patch)
tree24b90467e3ba2f400320acacafec492b2842d838 /games
parentRewrite of kvlt(6) (diff)
downloaddotfiles-8ebdaf8e135bd1c1b4383d632cfa1dd8132d42d4.tar.gz
dotfiles-8ebdaf8e135bd1c1b4383d632cfa1dd8132d42d4.zip
Move translations to end
Diffstat (limited to 'games')
-rwxr-xr-xgames/kvlt6
1 files changed, 3 insertions, 3 deletions
diff --git a/games/kvlt b/games/kvlt
index 755d3636..b921913b 100755
--- a/games/kvlt
+++ b/games/kvlt
@@ -4,9 +4,6 @@
# Lowercase to capitals
y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/
-# O->0, S->Z, U->V
-y/OSU/0ZV/
-
# Pad the start and end of the line temporarily to work around GNU sed(1) not
# respecting POSIX word boundaries, leaving us with no compatible options
s/^/~/
@@ -36,3 +33,6 @@ s,\([^A-Z]\)TRUE\([^A-Z]\),\1TRV\2,g
# Remove the padding established above
s/^~//
s/~$//
+
+# O->0, S->Z, U->V
+y/OSU/0ZV/