001、字符串转换为shell数组
[root@PC1 test1]# str1="aa bb 100 200 500" ## 生成测试字符串 [root@PC1 test1]# echo $str1 aa bb 100 200 500 [root@PC1 test1]# ay1=($str1) ## 字符串转换为数组 [root@PC1 test1]# echo ${ay1[0]} ## 输出数组的第一个元素 aa [root@PC1 test1]# echo ${ay1[2]} 100
002、数组转换为字符串
。
标签:test1,aa,shell,PC1,数组,Linux,字符串,root From: https://www.cnblogs.com/liujiaxin2018/p/18013090