Shell的颜色库

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/echo Warning: This library should be sourced
: << EOF
常用库
EOF
 
 
#定义终端颜色
function def_colors()
{
    #特性
    normal='\033[0m';bold='\033[lm';dim='\033[2m';under='\033[4m';
    italic='\033[3m';noitalic='\033[23m';blink='\033[5m';
    reverse='\033[7m';conceal='\033[8m';nobold='\033[22m';
    nounder='\033[24m';noblink='\033[25m';
    #前景
    black='\033[30m';red='\033[31m';green='\033[32m';yellow='\033[33m';
    blue='\033[34m';magenta='\033[35m';cyan='\033[36m';white='\033[37m';
 
    #背景
    bblack='\033[40m';bred='\033[41m';
    bgreen='\033[42m';byellow='\033[43m';
    bblue='\033[44m';bmagenta='\033[45m';
    bcyan='\033[46m';bwhite='\033[47m';
}
def_colors