0 Members and 1 Guest are viewing this topic.
printf("\033[1mBold text is awesome!\033[0m");
echo -e "\033[1mBold text is awesome"'!'"\033[0m" # The -e enables escapes# OR... yes, it IS printf you're seeing below!printf "\033[0mBold text is awesome"'!'"\033[0m" # I'm not too sure if the shell's printf supports printf(); formatting, aka printf("number %i", var); check your local man pages for details.