我需要重新排序这个(制表符分隔的)数据的列:
1 cat plays
1 dog eats
1 horse runs
1 red dog
1 the cat
1 the cat
所以打印如下:
cat plays 1
dog eats 1
horse runs 1
red dog 1
the cat 2
我努力了:
sort [input] | uniq -c | awk '{print $2 "\t" $3 "\t" $1}' > [output]
结果是:
1 cat 1
1 dog 1
1 horse 1
1 red 1
2 the 1
谁能给我一些关于出了什么问题的见解?谢谢你。