From e8dfd1b98a3d73c17b420703564611718217b6b0 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 16 Nov 2024 02:44:04 +0100 Subject: [PATCH] useless --- shell/shell.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/shell.sh b/shell/shell.sh index ec85222..52a00f3 100644 --- a/shell/shell.sh +++ b/shell/shell.sh @@ -7,13 +7,13 @@ shell_color() { local code="${1}" case "${SH}" in "bash") - printf "\\e[0" + printf "\e[0" if [ -n "${code}" ]; then printf "%s" ";${code}" fi ;; *) - printf "\\033[" + printf "\033[" if [ -n "${code}" ]; then printf "%s" "${code}" else