码迷,mamicode.com
首页 > 编程语言 > 详细

shell 拆分字符串成数组 放入数组

时间:2020-06-12 20:16:27      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:class   字符串   nod   for   color   style   bash   shell   pre   

#!/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 拆分字符串成数组 放入数组

标签:class   字符串   nod   for   color   style   bash   shell   pre   

原文地址:https://www.cnblogs.com/alpha-cat/p/13106893.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!