shell高亮显示

高亮显示

echo   -e    终端颜色   +   显示内容   +  结束后的颜色

例如:

echo   -e  "\e[1;30m   jeson say Hi~ \e[1;l0m"

echo   -e "\e[1;30m  "" jenson  say  Hi~" $(tput  sgr0)

在上面的2个案例中:开始的\e[1;和结尾的\e[1;这是语法结构必须要这样写才可以

关联数组

普通数组:只能使用整数作为数组索引

关联数组:可以使用字符串作为数组索引

申明关联数组变量

declare   -A    数组变量

例如:declare   -A   ass_array1

赋值

数组名[索引]=变量值

例如:ass_array1[index]=pear

你可能感兴趣的:(shell高亮显示)