我有一个包含多列的制表符分隔文件。我想增加在 A 列中看到某些内容的次数,并在新的 B 列中打印与 A 列中的值相关的数据。
前任:
1 blue
1 green
1 red
100 blue
100 red
我想要一个输出文件,内容如下
3 1 blue,green,red
2 100 blue,red
有没有办法使用 awk 或 perl 来做到这一点?
答案1
在 awk 中:
{
if (count[$1] == "") {
count[$1] = 1;
results[$1] = $2;
} else {
count[$1] = count[$1] + 1;
results[$1] = results[$1] "," $2;
}
}
END {
for (number in count) {
print count[number],number,results[number];
}
}
输出结果为:
2 100 blue,red 3 1 blue,green,red
对于上面的示例数据。
结果的顺序可能不完全符合您的要求,我不确定这对您来说有多重要。
答案2
这是我尝试过的方法,可能对你有用。注意:"\011"
= tab char,更改" "
为空格)
awk 'BEGIN { s = "\011"; c = "," ; cnt = 0; all_colors = "" } {
if ( NR == 1 ) { num = $1; colors[cnt++] = $2 }
else {
if ( num != $1 ) {
for (x=0; x<cnt; x++) {
all_colors = all_colors colors[x]
}
print cnt s num s all_colors; cnt = 0; all_colors = ""
num = $1; colors[cnt++] = $2
}
else { colors[cnt++] = c $2 }
}
}
END {
all_colors = ""
for (x=0; x<cnt; x++) { all_colors = all_colors colors[x] }
print cnt s num s all_colors
}' tab_file
tab_file output
1 blue 3 1 blue,green,red
1 green 2 100 blue,red
1 red
100 blue
100 red