Update cli_printMessage.sh:
- Remove the 'for' loop we previously added in order to make this
function to accept more than one message thorugh first function
argument. That configuration seems to work when messages do not
include white spaces inside (e.g., messages are a path), but
when individual messages contain spaces as part of themselves
(e.g., error messages) everything is broken into words because
we didn't escape messages values when we built the loop. On the
other hand, if we escape messages in the loop, paths passed as
individual messages are concatenated and the format we expect
isn't shown.
- So, to eliminate such ambiguity, this function only accepts one
message in order to output it in a predefined format. If you
eant to print several lines, then create loop through files and
call this function inside the loop to print individual files
with predefined formats.