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