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

while read line 的字符串截取

时间:2018-02-02 20:16:36      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:bash   直接   ##   使用   字符   就会   done   for循环   while   

有的时候,循环文本如下

root@pts/1 # cat file |head -10
2961047 788934832 797699249 2018-01-30-10
2961054 801973977 797725431 2018-01-30-10
2961057 799438954 797701082 2018-01-30-10
2961064 802146497 797701082 2018-01-30-10
2961067 802146292 797351447 2018-01-30-10
2961074 802140219 801973274 2018-01-30-10
2961077 802132731 801134893 2018-01-30-10
2961082 802129091 797771835 2018-01-30-10
2961083 799350247 797487029 2018-01-30-10
2961097 800865188 797487029 2018-01-30-10

看似都在一行,使用for循环处理是就会出问题,我们来看下

root@pts/1 # for i in `cat file`;do echo $i ;done|head -10
2961047
788934832
797699249
2018-01-30-10
2961054
801973977
797725431
2018-01-30-10
2961057
799438954

每一行的信息分割后都到了下一行,如果去截取字符串,就会出问题,我们可以使用while read line 的方式处理

使用while read line 读取文件时,line的变量赋予如下

#!/bin/bash
cd /share/perdir/chaichuan/tmp
while read line
do
info=($line)   ### 需要将读到的 line 赋予变量,然后做字符串截取如  ${info[3]}   代表这行的第4个字符串
echo ${info[0]} ${info[1]}  ${info[2]} ${info[3]}
done < file

root@pts/1 # bash temp.sh|head -10
2961047 788934832 797699249 2018-01-30-10
2961054 801973977 797725431 2018-01-30-10
2961057 799438954 797701082 2018-01-30-10
2961064 802146497 797701082 2018-01-30-10
2961067 802146292 797351447 2018-01-30-10
2961074 802140219 801973274 2018-01-30-10
2961077 802132731 801134893 2018-01-30-10
2961082 802129091 797771835 2018-01-30-10
2961083 799350247 797487029 2018-01-30-10
2961097 800865188 797487029 2018-01-30-10

可以直接使用 ${line[2]} 来截取需要的字符串

while read line 的字符串截取

标签:bash   直接   ##   使用   字符   就会   done   for循环   while   

原文地址:http://blog.51cto.com/chaichuan/2068287

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