From fd587d83d063e8b7013acfd0abb250d4268006f7 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Fri, 4 Jul 2025 07:58:06 +0200 Subject: [PATCH] =?UTF-8?q?=E2=88=92ifs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sh/self.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sh/self.sh b/sh/self.sh index dfbe203..4118d64 100644 --- a/sh/self.sh +++ b/sh/self.sh @@ -5,7 +5,7 @@ rwx_doc() { local name="${1}" [ -n "${name}" ] || return local constant doc func line module - printf "%s\n" "${RWX_CODE}" | while IFS= read -r line; do + while IFS= read -r line; do case "${line}" in "#!"*) doc="" ;; "#↓"*) @@ -44,7 +44,9 @@ rwx_doc() { fi ;; esac - done + done <