diff options
author | June McEnroe <june@causal.agency> | 2020-06-17 17:48:40 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-06-17 17:48:40 -0400 |
commit | 538bea3f11f2a20281cb62a005f34125cd12ce0d (patch) | |
tree | 37c1a0adb84c118043820786c1b67a1cea287f65 /home/.local | |
parent | Remove aes (diff) | |
download | src-538bea3f11f2a20281cb62a005f34125cd12ce0d.tar.gz src-538bea3f11f2a20281cb62a005f34125cd12ce0d.zip |
Add simpler aes tr script
Diffstat (limited to '')
-rwxr-xr-x | home/.local/bin/aes | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/home/.local/bin/aes b/home/.local/bin/aes new file mode 100755 index 00000000..32b52637 --- /dev/null +++ b/home/.local/bin/aes @@ -0,0 +1,7 @@ +#!/bin/sh +set -eu + +enwiden() { + exec tr ' -~' ' !-~' +} +[ $# -gt 0 ] && echo "$*" | enwiden || enwiden |