<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[BOL: Bash color variables]]></title>
	<link>https://bioinformaticsonline.com/snippets/view/38019/bash-color-variables?</link>
	<atom:link href="https://bioinformaticsonline.com/snippets/view/38019/bash-color-variables?" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/snippets/view/38019/bash-color-variables</guid>
	<pubDate>Fri, 26 Oct 2018 05:26:19 -0500</pubDate>
	<link>https://bioinformaticsonline.com/snippets/view/38019/bash-color-variables</link>
	<title><![CDATA[Bash color variables]]></title>
	<description><![CDATA[<code># Reset
Color_Off=&#039;\033[0m&#039;       # Text Reset

# Regular Colors
Black=&#039;\033[0;30m&#039;        # Black
Red=&#039;\033[0;31m&#039;          # Red
Green=&#039;\033[0;32m&#039;        # Green
Yellow=&#039;\033[0;33m&#039;       # Yellow
Blue=&#039;\033[0;34m&#039;         # Blue
Purple=&#039;\033[0;35m&#039;       # Purple
Cyan=&#039;\033[0;36m&#039;         # Cyan
White=&#039;\033[0;37m&#039;        # White

# Bold
BBlack=&#039;\033[1;30m&#039;       # Black
BRed=&#039;\033[1;31m&#039;         # Red
BGreen=&#039;\033[1;32m&#039;       # Green
BYellow=&#039;\033[1;33m&#039;      # Yellow
BBlue=&#039;\033[1;34m&#039;        # Blue
BPurple=&#039;\033[1;35m&#039;      # Purple
BCyan=&#039;\033[1;36m&#039;        # Cyan
BWhite=&#039;\033[1;37m&#039;       # White

# Underline
UBlack=&#039;\033[4;30m&#039;       # Black
URed=&#039;\033[4;31m&#039;         # Red
UGreen=&#039;\033[4;32m&#039;       # Green
UYellow=&#039;\033[4;33m&#039;      # Yellow
UBlue=&#039;\033[4;34m&#039;        # Blue
UPurple=&#039;\033[4;35m&#039;      # Purple
UCyan=&#039;\033[4;36m&#039;        # Cyan
UWhite=&#039;\033[4;37m&#039;       # White

# Background
On_Black=&#039;\033[40m&#039;       # Black
On_Red=&#039;\033[41m&#039;         # Red
On_Green=&#039;\033[42m&#039;       # Green
On_Yellow=&#039;\033[43m&#039;      # Yellow
On_Blue=&#039;\033[44m&#039;        # Blue
On_Purple=&#039;\033[45m&#039;      # Purple
On_Cyan=&#039;\033[46m&#039;        # Cyan
On_White=&#039;\033[47m&#039;       # White

# High Intensity
IBlack=&#039;\033[0;90m&#039;       # Black
IRed=&#039;\033[0;91m&#039;         # Red
IGreen=&#039;\033[0;92m&#039;       # Green
IYellow=&#039;\033[0;93m&#039;      # Yellow
IBlue=&#039;\033[0;94m&#039;        # Blue
IPurple=&#039;\033[0;95m&#039;      # Purple
ICyan=&#039;\033[0;96m&#039;        # Cyan
IWhite=&#039;\033[0;97m&#039;       # White

# Bold High Intensity
BIBlack=&#039;\033[1;90m&#039;      # Black
BIRed=&#039;\033[1;91m&#039;        # Red
BIGreen=&#039;\033[1;92m&#039;      # Green
BIYellow=&#039;\033[1;93m&#039;     # Yellow
BIBlue=&#039;\033[1;94m&#039;       # Blue
BIPurple=&#039;\033[1;95m&#039;     # Purple
BICyan=&#039;\033[1;96m&#039;       # Cyan
BIWhite=&#039;\033[1;97m&#039;      # White

# High Intensity backgrounds
On_IBlack=&#039;\033[0;100m&#039;   # Black
On_IRed=&#039;\033[0;101m&#039;     # Red
On_IGreen=&#039;\033[0;102m&#039;   # Green
On_IYellow=&#039;\033[0;103m&#039;  # Yellow
On_IBlue=&#039;\033[0;104m&#039;    # Blue
On_IPurple=&#039;\033[0;105m&#039;  # Purple
On_ICyan=&#039;\033[0;106m&#039;    # Cyan
On_IWhite=&#039;\033[0;107m&#039;   # White

#Usage
echo &quot;${Green}Working on test${Reset}&quot;</code>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

</channel>
</rss>