杂记---待整理
Posted Acumen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了杂记---待整理相关的知识,希望对你有一定的参考价值。
---恢复内容开始---
shell高亮显示
echo -e 终端颜色 显示内容 结束后的颜色
\e[1;31m content \e[1;0m
1为设置,0为不设置。
31m 0m为颜色
[[email protected] testpace]$ echo -e "\e[1;31m consumer huawei com \e[1;0m" consumer huawei com [[email protected] testpace]$
shell中的关联数组
关联数组
普通数组:只能使用整数作为数组索引
关联数组:可以使用字符串作为数组索引
申明关联数组变量
#declare -A ass_array1
赋值:数组名[索引]=变量值
#ass_array1[index1]=pear
---恢复内容结束---
以上是关于杂记---待整理的主要内容,如果未能解决你的问题,请参考以下文章