码迷,mamicode.com
首页 > 其他好文 > 详细

bash脚本之读取数据

时间:2017-07-24 17:40:54      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:依次   初始化   参数   题目   运用   脚本   数组   highlight   blog   

题目:

一个tab间隔的文件,读取时一行为一个循环,依次读取每行的参数。

比如第一行为:a  b  c ,输出为a+b+c

#/bin/bash
while read id
do
  a=($id)
  b=${a[0]}
  c=${a[1]}
  d=${a[2]}
  echo $b+$c+$d
done<data

总结:关键在于(),{}的运用

a=($id) #()起了初始化数组的作用。

b=${a[0]} #{}起了划分变量界限的作用。

###加{}和不加{}的区别

$a="one two" $b=($a) $c=$b[0] $echo c one[0] $d=${b[0]} $echo d one

  

bash脚本之读取数据

标签:依次   初始化   参数   题目   运用   脚本   数组   highlight   blog   

原文地址:http://www.cnblogs.com/timeisbiggestboss/p/7229635.html

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