awk按分隔符的不同取出不同的列
生活随笔
收集整理的這篇文章主要介紹了
awk按分隔符的不同取出不同的列
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
看下bash代碼:
#!/bin/bash# get "orderno" and "order_money" from datafile of thisside or otherside, save the result to file xxx.bak # 把金額的單位全部化為:元function get_orderNo_orderMoney() {if [ $1 == "|" ]; thenlet n1=1let n2=3let n3=1000elif [ $1 == "," ]; thenlet n1=2let n2=6let n3=1elseecho "Unrecognized separator"exit 1fifor i in $*doif [ $i != $1 ]; thencp $i tempdos2unix tempif [ $1 == "," ]; thensed '1d' temp > temp2mv temp2 tempfiawk -F "$1" "{print \$$n1 \"\t\" \$$n2/$n3}" temp > temp2sort temp2 > tempfname="result/`basename $i`.bak"mv temp $fnamefidone }get_orderNo_orderMoney "|" ebm/*.txt get_orderNo_orderMoney "," junbao/*.txtrm -f temp*說明:上面代碼實現了對指定目錄下指定文件,根據不同的分隔符,取出不同的列,并把結果保存到xxx.bak文件中。
關鍵:因為分隔符不同,所以取的列不同,為了在awk中根據參數值取出不同的列,所以寫法比較特殊。特地記下:
awk -F "$1" "{print \$$n1 \"\t\" \$$n2/$n3}" temp > temp2
?上面的意思是取出第n1和n2列,中間以制表符分開,其中n1和n2的值根據分隔符的不同設定為不同的值。而且對于第n2列的數據,是將其除以1000后再取出來的。
總結
以上是生活随笔為你收集整理的awk按分隔符的不同取出不同的列的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: UE4 骨骼重定向记录
- 下一篇: 进程初学(二)