1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-28 10:07:12 -07:00
rc/sh/scramble

9 lines
184 B
Bash
Executable File

#!/usr/bin/env bash
scramble() {
local eggs='s/@\(\w\)\(\w\)\(\w\)/@\3\1@\2/g'
sed \
-e 's/\b\w/&@/g' \
-e "$eggs" -e "$eggs" -e "$eggs" -e "$eggs" \
-e 's/@//g'
}