大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
出入任意字符串,使其变成想要的颜色:
创新互联公司专注于企业全网营销推广、网站重做改版、龙泉驿网站定制设计、自适应品牌网站建设、H5建站、商城网站建设、集团公司官网建设、外贸网站建设、高端网站制作、响应式网页设计等建站业务,价格优惠性价比高,为龙泉驿等各大城市提供网站开发制作服务。
#!/bin/sh
plus_color(){
RED_COLOR='\E[1;31m'
GREEN_COLOR='\E[1;32m'
YELLOW_COLOR='\E[1;33m'
BLUE_COLOR='\E[1;34m'
PINK_COLOR='\E[1;35m'
RES='\E[0m'
if [ $# -ne 2 ]
then
echo "usage $0:content {red|yellow|blue|green}"
exit
fi
case "$2" in
red|RED)
echo -e "${RED_COLOR}$1${RES}"
;;
yellow|YELLOW)
echo -e "${YELLOW_COLOR}$1${RES}"
;;
green|GREEN)
echo -e "${GREEN_COLOR}$1${RES}"
;;
blue|BLUE)
echo -e "${BLUE_COLOR}$1${RES}"
;;
pink|PINK)
echo -e "${PINK_COLOR}$1${RES}"
;;
*)
echo "usage $0:content {red|yellow|blue|green}"
esac
}
plus_color "I" red
plus_color "am" yellow
plus_color "you" blue