mirror of
https://github.com/notwa/rc
synced 2024-11-05 02:29:06 -08:00
8 lines
184 B
Bash
8 lines
184 B
Bash
#!/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'
|
|
}
|