Util : Add _info.

This commit is contained in:
Dmitry Voronin 2023-12-23 17:41:20 +03:00
parent 99cb52ea4f
commit 4bc13cb1ba

View file

@ -84,6 +84,12 @@ function _debug() {
echo -e "${color_bwhite}${*}${color_default}" echo -e "${color_bwhite}${*}${color_default}"
} }
# Report an info to stdout.
# Usage: _info <MESSAGE>
function _info() {
echo -e "${color_bwhite}${*}${color_default}"
}
# Skip current iteration. # Skip current iteration.
# Usage: _skip [MESSAGE] # Usage: _skip [MESSAGE]
function _skip() { function _skip() {