Quantcast
Channel: Technicus
Viewing all articles
Browse latest Browse all 91

Add colors to bash scripts

$
0
0

A quick note on how to easily add colors to your bash scripts. Thanks to https://stackoverflow.com/questions/5947742/how-to-change-the-output-color-of-echo-in-linux Here are a few ANSI escape codes for reference #Set colors to variables RED='\033[0;31m' GREEN='\033[0;32m' LIGHTBLUE='\033[0;34m' NC='\033[0m' #No color Reference the variables using echo -e like so: echo -e "${RED} $instance is not a valid instance. Exiting. ${NC}" Profit.

The post Add colors to bash scripts appeared first on Technicus.


Viewing all articles
Browse latest Browse all 91

Trending Articles