Updated base.functions.bash to reflect the new color names

pull/4/head
Robert R Evans 2010-10-06 15:24:04 -07:00
parent fe73f01a3a
commit a6d20e67fe
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ function ips {
function myip { function myip {
res=$(curl -s checkip.dyndns.org | grep -Eo '[0-9\.]+') res=$(curl -s checkip.dyndns.org | grep -Eo '[0-9\.]+')
echo "Your public IP is: ${LIGHT_GREEN} $res ${NORMAL}" echo "Your public IP is: ${bold_green} $res ${normal}"
} }