shell 拆分字符串成数组 放入数组
Posted 挪威森林猫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 拆分字符串成数组 放入数组相关的知识,希望对你有一定的参考价值。
#!/bin/bash a="node1 node2 node3 node4 node5" OLD_IFS="$IFS" IFS=" " arr=($a) IFS="$OLD_IFS" for s in ${arr[@]} do echo "$s" done
以上是关于shell 拆分字符串成数组 放入数组的主要内容,如果未能解决你的问题,请参考以下文章
linux shell脚本:拆分字符串,将它们放在一个数组中然后循环它们[重复]