码迷,mamicode.com
首页 > 系统相关 > 详细

shell中颜色设置

时间:2020-01-04 01:04:54      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:shel   you   The   $2   echo   res   $0   col   ase   

出入任意字符串,使其变成想要的颜色:

#!/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

shell中颜色设置

标签:shel   you   The   $2   echo   res   $0   col   ase   

原文地址:https://blog.51cto.com/11873474/2464013

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!