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