使用awk在文件上附加列

时间:2013-11-05 19:10:00

标签: bash awk

我有来自标准输出的数据列(在我的情况下是对mysql的调用),我想在每个循环中追加文件中的列。我该怎么办?

Standard output:

 a1
 a2
....
 an

保存在名为table.dat的文件中:

table.dat:

 a1
 a2
....
 an

然后产生另一个输出:

Further standard output:

 b1
 b2
....
 bn

追加到table.dat:

table.dat:

 a1   b1
 a2   b2
.... ....
 an   bn

......等等。我可以使用粘贴,但我需要三个步骤:

 line producing standard output > tmpfile;
 paste prevfile tmpfile > table
 mv table prevfile;

有没有更快的方法,也许是使用awk?

此解决方案: Add a new column to the file 产生一张空桌子。

2 个答案:

答案 0 :(得分:6)

您可以通过从stdin中读取来使用这样的粘贴:

paste <(command1) <(command2)

e.g。

paste <(cat f1) <(cat f2)

而不是:

paste f1 f2

答案 1 :(得分:2)

只是为了澄清给定两个流的情况下的一些细节,没有相同数量的元素。结果为paste as proposed by anubhava

[ ~]$ cat t1.txt 
a1
a2
a3
[ ~]$ cat t2.txt 
b1
b2

[ ~]$ paste t1.txt t2.txt 
a1  b1
a2  b2
a3

否则,Bash只是为了好玩:

[ ~]$ cat test.sh 
#!/bin/bash

f1=t1.txt
f2=t2.txt

getNumberOfRows(){
    wc -l "$1"|cut -d" " -f1
}

s1=$(getNumberOfRows "$f1")
s2=$(getNumberOfRows "$f2")
[[ $s1 -le $s2 ]] && min="$s1" || min="$s2"

i=1
while read; do
    echo "$REPLY $(sed -n ${i}p $f2)"
   (( i++ ))
   [[ $i -ge $min ]] && break
done < "$f1"

[ ~]$ ./test.sh 
a1 b1
a2 b2
[ ~]$

在此示例中,您可以看到,如果文件大于另一个文件,我们不会显示其他行。

当然,您可以通过paste或使用此脚本的命令输出更改文件;)

使用paste

paste <(COMMAND1) <(COMMAND2)

使用脚本:请参阅此answer以了解如何在循环中读取命令输出。