Compare commits

..

No commits in common. "9327161e72aeaed4e447246c3b5f6ceadd60143f" and "5c5464d4ae8b41e8a519dd5c147946f9f9c371a1" have entirely different histories.

View file

@ -192,10 +192,10 @@ _rwx_code_variables=""
rwx_parse_code() { rwx_parse_code() {
# parse aliases # parse aliases
local line text local line
RWX_ALIASES="$(rwx_parse_aliases)" RWX_ALIASES="$(rwx_parse_aliases)"
while IFS= read -r line; do while IFS= read -r line; do
eval "$(echo "${line}" | sed "s| = |() { |") \"\${@}\"; }" eval "${line/ = /() { } \"\${@}\"; }"
done <<EOF done <<EOF
${RWX_ALIASES} ${RWX_ALIASES}
EOF EOF