1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-18 01:53:22 -07:00

simplify code

This commit is contained in:
Connor Olding 2023-08-16 05:30:36 -07:00
parent 6244c67e24
commit f06ed0b0bb

View File

@ -10,8 +10,7 @@ v_domap() {
local _k_="$1" _v_= _new_= _next_= _i_= _o_=
eval "_v_=\"\$$_k_\""
while [ -n "$_v_" ]; do
_next_="${_v_#[! ]}"
[ "$_next_" != "$_v_" ] || _next_="${_v_# }"
_next_="${_v_#?}"
_i_="${_v_%"$_next_"}"; _v_="$_next_"
map
_new_="$_new_$_o_"