This commit is contained in:
Marc Beninca 2025-07-06 16:39:35 +02:00
parent 5c5464d4ae
commit c4b63c5de6
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

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