From 368340f9914bc1a9661545b9bb627eabfba79eab Mon Sep 17 00:00:00 2001 From: Ethan Sommer Date: Sun, 19 Jan 2020 14:35:36 -0500 Subject: [PATCH] log: replace use of literal escape code error with printf %b --- kiss | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/kiss b/kiss index b2fe0b9..ea61a0b 100755 --- a/kiss +++ b/kiss @@ -15,17 +15,13 @@ log() { # Print a message prettily. # - # This function uses the literal escape character (Ctrl+V+Escape) as - # a simple way of *safely* bypassing the escape sequence restrictions - # on 'printf %s'. Cheeky, I know. - # - # '\033[1;32m' Set text to color '2' and make it bold. - # '\033[m': Reset text formatting. - # '${3:-->}': If the 3rd argument is missing, set prefix to '->'. - # '${2:+[1;3Xm}': If the 2nd argument exists, set the text style of '$1'. - # '${2:+[m}': If the 2nd argument exists, reset text formatting. - printf '\033[1;33m%s \033[m%s\033[m %s\n' \ - "${3:-->}" "${2:+}$1${2:+}" "$2" + # '\033[1;32m' Set text to color '2' and make it bold. + # '\033[m': Reset text formatting. + # '${3:-->}': If the 3rd argument is missing, set prefix to '->'. + # '${2:+\033[1;3Xm}': If the 2nd argument exists, set text style of '$1'. + # '${2:+\033[m}': If the 2nd argument exists, reset text formatting. + printf '\033[1;33m%s \033[m%b%s\033[m %s\n' \ + "${3:-->}" "${2:+\033[1;36m}" "$1" "$2" } die() {