【Shell指令碼】合并行

來源:互聯網
上載者:User

作者:gnuhpc
出處:http://www.cnblogs.com/gnuhpc/

有一個文本:
2006
中國
四川
042834 1 2 3
042835 4 5 6
042836 7 8 9
2007
中國
重慶
042837 1 2 3
042838 4 5 6
042839 7 8 9
......
......
要合并為
042834 1 2 3 2006 中國 四川
042835 4 5 6 2006 中國 四川
042836 7 8 9 2006 中國 四川
042837 1 2 3 2007 中國 重慶
042838 4 5 6 2007 中國 重慶
042839 7 8 9 2007 中國 重慶
指令碼如下:
#!/bin/bash
#########################################################################
# Author: pchuang@cn.ibm.com
# Created Time: Sun 05 Apr 2009 10:04:51 AM CST
# File Name: process.sh
# Description: A script for the processing of the TEXT
#########################################################################
file=$1
i=1
lines[0]=""
if [ ! -s $1 ] ; then
echo "Please specify a valid text file"
exit 1
fi
while read line
do
lines[$i]="$line"
if [ $i -eq 6 ] ; then
lines[$i]="$line"
for j in $(seq 4 6); do
echo ${lines[$j]} ${lines[1]} ${lines[2]} ${lines[3]} >> result.txt
done
let i=0
fi
let i=$i+1
done < $1
執行:
$./process.sh text
$more result.txt
042834 1 2 3 2006 中國 四川
042835 4 5 6 2006 中國 四川
042836 7 8 9 2006 中國 四川
042837 1 2 3 2007 中國 重慶
042838 4 5 6 2007 中國 重慶
042839 7 8 9 2007 中國 重慶
後來某牛人用AWK也完成了:
awk 'BEGIN{i=0}{if(NF!=4){h[i++]=$0;next}else{i=0;print $0" "h[0]" "h[1]" "h[2]}}'

作者:gnuhpc
出處:http://www.cnblogs.com/gnuhpc/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.