Wednesday, August 13, 2014

COLORS to your Shell

## Colors to your shell is nothing but colors to the ANSI console. As both are same...

## You tell the console with the codes which mention the #colors..

## I hope below simple commands are self explaining. use #the comment box if you have any doubts..


fg_black="\033[30m"
fg_red="\033[31m"
fg_green="\033[32m"
fg_yellow="\033[33m"
fg_blue="\033[34m"
fg_purple="\033[35m"
fg_cyan="\033[36m"
fg_white="\033[37m"

bg_black="\033[40m"
bg_red="\033[41m"
bg_green="\033[42m"
bg_yellow="\033[43m"
bg_blue="\033[44m"
bg_purple="\033[45m"
bg_cyan="\033[46m"
white="\033[47m"

on_bold="\033[1m"
off_bold="\033[22m"
on_italic="\033[3m"
off_italic="\033[23m"
on_uline="\033[4m"
off_uline="\033[24m"
on_inv="\033[7m"
off_inv="\033[27m"

off_all="\033[0m"


echo "$fg_yellow" "$bg_red" "Danger !! Danger !!"
echo "$off_all"

No comments:

Post a Comment