shell高亮显示:echo -e 终端颜色 + 显示内容 + 结束后的颜色
echo -e "\e[1;30m" "xxx" $(tput sgr0) //-e 颜色指令 参数1 具体颜色 参数2 显示内容 参数3 重置颜色
echo -e "\e[1;30m" "Jason say hi!" $(tput srg0)
echo -e "\e[1;35m Jason say hi \e[1;30m"
#字符高亮显示 echo -e "\e[1;35m" "sting" "\e[1;0m"
resettem=$(tput sgr0) #恢复系统默认高亮显示tput sgr0或\e[1;0m
"\e[1;35m" +string+ resettem #设置字符串高亮
declare -A ssharray #定义关联数组
ssharray[$i]=${script_file} #使用关联数组
shell高亮显示
echo -e "\e[1;30m" "xxx" $(tput sgr0) //-e 颜色指令 参数1 具体颜色 参数2 显示内容 参数3 重置颜色