温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

shell中颜色设置

发布时间:2020-07-29 17:07:05 来源:网络 阅读:137 作者:doubf 栏目:系统运维

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

#!/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
向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI