1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-18 17:53:23 -07:00
rc/sh/scramble
2021-07-29 00:37:35 -07:00

14 lines
290 B
Bash
Executable File

#!/usr/bin/env bash
# YES_ZSH
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 "$eggs" -e "$eggs" -e "$eggs" -e "$eggs" \
-e 's/@//g'
}
[ "${SOURCING:-0}" -gt 0 ] || scramble "$@"