From 4bc13cb1bad422a5aca3a99de3c03ac6130a9c2b Mon Sep 17 00:00:00 2001 From: desktop Date: Sat, 23 Dec 2023 17:41:20 +0300 Subject: [PATCH] Util : Add _info. --- .config/bash/module/Util.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.config/bash/module/Util.sh b/.config/bash/module/Util.sh index 85756bf..f33ca3d 100644 --- a/.config/bash/module/Util.sh +++ b/.config/bash/module/Util.sh @@ -84,6 +84,12 @@ function _debug() { echo -e "${color_bwhite}${*}${color_default}" } +# Report an info to stdout. +# Usage: _info +function _info() { + echo -e "${color_bwhite}${*}${color_default}" +} + # Skip current iteration. # Usage: _skip [MESSAGE] function _skip() {