so i wanted to make a MR ROBOT default banner, but i don't know how to make the output in a red Color in terminal, could somebody please help? also does anybody have the Original MR ROBOT ascii art? if so please drop it here.
ps: using kali linux 2018.1 release
While
tput
is very handy for mobile environments, ASCII colouring is always an alternative:will output the term
MR ROBOT
in red font.Related: How to change the output color of echo in Linux on Stack Overflow
Try using this :
And as explained in comments, do not hard-code ANSI color escape sequences in your program! The
tput
command lets you interact with the terminal database in a sane way: http://mywiki.wooledge.org/BashFAQ/037