开发者

Add a new column to the file

开发者 https://www.devze.com 2023-04-08 14:45 出处:网络
How can I add a new c开发者_如何学Column to a file using awk? original.file F1 F2 F3 ..F10 add F11 to original.file

How can I add a new c开发者_如何学Column to a file using awk?

original.file

F1 F2 F3 ..F10 

add F11 to original.file

F1 F2 F3 ..F10 F11


awk '{print $0, "F11"}' original.file


If you want to add a column to a file, you can do the following.

remark: We assume that the field separator FS equals to the string "fs". You can replace this by anything, or if you just use <blanks> as field separator, you can remove the BEGIN{FS=OFS="fs"} part in any of the following solutions.

add a column at the beginning:

awk 'BEGIN{FS=OFS="fs"}{print value OFS $0}' file

add a column at the end:

awk 'BEGIN{FS=OFS="fs"}{print $0 OFS value}' file

add a column before column n:

awk 'BEGIN{FS=OFS="fs"}{$n = value OFS $n}1' file

add column after column n:

awk 'BEGIN{FS=OFS="fs"}{$n = $n OFS value}1' file

add a column before each of column n1 < n2 < ... < nm: (start at the back)

awk 'BEGIN{FS=OFS="fs"; split("n1,n2,n3,...,nm",a,",")}
     {for(i=m;i>0;--i) $(a[i]) = value OFS $(a[i])}1' file

or for different values

awk 'BEGIN{FS=OFS="fs"; split("n1,n2,n3,...,nm",a,","); split("value1,value2,...,valuem",v,",")}
     {for(i=m;i>0;--i) $(a[i]) = v[i] OFS $(a[i])}1' file

add a column after each of column n1 < n2 < ... < nm: (start at the back)

awk 'BEGIN{FS=OFS="fs"; split("n1,n2,n3,...,nm",a,",")}
     {for(i=m;i>0;--i) $(a[i]) = $(a[i]) OFS value}1' file

or for different values

awk 'BEGIN{FS=OFS="fs"; split("n1,n2,n3,...,nm",a,","); split("value1,value2,...,valuem",v,",")}
     {for(i=m;i>0;--i) $(a[i]) = $(a[i]) OFS v[i]}1' file


try:

awk 'BEGIN{getline to_add < "f3"}{print $0,to_add}' f

Reads the column to add from file "f3" and saves it in the variable to_add. After that it adds the column to each line of file f.

HTH Chris

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号