diff --git a/sh/main.sh b/sh/main.sh index 0abfb5e..ae806a3 100755 --- a/sh/main.sh +++ b/sh/main.sh @@ -195,7 +195,9 @@ rwx_parse_code() { local line text RWX_ALIASES="$(rwx_parse_aliases)" while IFS= read -r line; do - eval "$(echo "${line}" | sed "s| = |() { |") \"\${@}\"; }" + text="$(echo "${line}" | sed "s| = |() { |")" + text="${text} \"\${@}\"; }" + eval "${text}" done <