docs: update

This commit is contained in:
Dylan Araps 2019-09-21 21:32:03 +03:00
parent 43205208b1
commit 9aac9eadea
1 changed files with 5 additions and 0 deletions

5
kiss
View File

@ -14,6 +14,11 @@
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 '->'.