From 44f415a8e85c89becabb61c0e832751bb01cce23 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 6 Jul 2025 16:44:31 +0200 Subject: [PATCH] eval/lint --- sh/main.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 <