系统相关
首页 > 系统相关> > shell---字体颜色

shell---字体颜色

作者:互联网

 1   1 #!/bin/bash
 2   2 BCOLOR="测试"
 3   3 WCOLOR="测试"
 4   4 while [ -e debug ]
 5   5 do
 6   6     let BACKCOLOR=$(( $RANDOM % 8 + 40))
 7   7     let WORDCOLOR=$(( $RANDOM % 8 + 30))
 8   8     case $BACKCOLOR in
 9   9         40) BCOLOR="黑底";;
10  10         41) BCOLOR="红底";;
11  11         42) BCOLOR="绿底";;
12  12         43) BCOLOR="黄底";;
13  13         44) BCOLOR="蓝底";;
14  14         45) BCOLOR="紫底";;
15  15         46) BCOLOR="绿底";;
16  16         47) BCOLOR="白底";;
17  17     esac
18  18     case $WORDCOLOR in
19  19         30) WCOLOR=黑字;;
20  20         31) WCOLOR=红字;;
21  21         32) WCOLOR=绿字;;
22  22         33) WCOLOR=黄字;;
23  23         34) WCOLOR=蓝字;;
24  24         35) WCOLOR=紫字;;
25  25         36) WCOLOR=绿字;;
26  26         37) WCOLOR=白字;;
27  27     esac
28  28     echo -e "\e[$BACKCOLOR;$WORDCOLOR;5m ==========$BCOLOR=$WCOLOR===============\e[m"
29  29     sleep 1
30  30 done

 

标签:shell,颜色,30,28,WCOLOR,字体,BCOLOR,BACKCOLOR,WORDCOLOR
来源: https://www.cnblogs.com/axjlxy/p/10926544.html