shell中颜色设置

发布时间:2020-07-29 17:07:05 作者:doubf
阅读:170
开发者专用服务器限时活动,0元免费领! 查看>>

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

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

亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读:
  1. 如何在shell中设置颜色
  2. 设置脚本颜色

开发者交流群:

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

shell he hell

上一篇:线框图设计技巧有哪些

下一篇:Java转前端开发容易吗

相关阅读

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

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