diff options
author | e5ten.arch@gmail.com <e5ten.arch@gmail.com> | 2020-01-19 19:35:35 +0000 |
---|---|---|
committer | e5ten.arch@gmail.com <e5ten.arch@gmail.com> | 2020-01-19 19:35:35 +0000 |
commit | 8ebb4a033e940452cf439635002ec83548582cee (patch) | |
tree | 9a63ba6285d17599772eaa2331cc64dffb34ba31 /kiss | |
parent | 43048622a0d3b8dc1de6f9ef9f76a3289ad29cac (diff) | |
download | cpt-8ebb4a033e940452cf439635002ec83548582cee.tar.gz |
log: replace use of literal escape code error with printf %b
FossilOrigin-Name: 6c1f5af41742b62e344228559dadd4ac47693a209b8a4b79cdfa498528904521
Diffstat (limited to 'kiss')
-rwxr-xr-x | kiss | 18 |
1 files changed, 7 insertions, 11 deletions
@@ -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;36m}$1${2:+[m}" "$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() { |