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

14 lines
290 B
Plaintext
Raw Normal View History

2013-10-21 01:05:07 -07:00
#!/usr/bin/env bash
2021-07-29 00:37:35 -07:00
# YES_ZSH
2013-10-21 01:05:07 -07:00
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" \
2014-09-07 20:55:42 -07:00
-e "$eggs" -e "$eggs" -e "$eggs" -e "$eggs" \
2013-10-21 01:05:07 -07:00
-e 's/@//g'
}
2021-07-29 00:37:35 -07:00
[ "${SOURCING:-0}" -gt 0 ] || scramble "$@"