Добавляем цветной вывод в printf
printf "\033[0;31m" //Set the text to the color red
printf "Hello\n" //Display Hello in red
printf "\033[0m" //Resets the text to default colorEscape is: \033
Color code is: [0;31m
| CODE | COLOR |
| [0;31m | Red |
| [1;31m | Bold Red |
| [0;32m | Green |
| [1;32m | Bold Green |
| [0;33m | Yellow |
| [01;33m | Bold Yellow |
| [0;34m | Blue |
| [1;34m | Bold Blue |
| [0;35m | Magenta |
| [1;35m | Bold Magenta |
| [0;36m | Cyan |
| [1;36m | Bold Cyan |
| [0m | Reset |