I have a large file containing data like this:
a 23
b 8
a 22
b 1
I want to be able to get this:
a 45
b 9
I can first sort this file and then do it in Python by scanning the file once. What is a good direct command-line way of doing this?
|
I have a large file containing data like this:
I want to be able to get this:
I can first sort this file and then do it in Python by scanning the file once. What is a good direct command-line way of doing this? |
|||||
|
can't test right now, back in a few mins. I hope this helps. |
|||||||||||
|
|
No need for awk here, or even sort -- if you have Bash 4.0, you can use associative arrays:
...or, if you sort the file first (which will be more memory-efficient; GNU sort is able to do tricks to sort files larger than memory, which a naive script -- whether in awk, python or shell -- typically won't), you can do this in a way which will work in older versions (I expect the following to work through bash 2.0):
|
|||||
|
|
One way using
Content of
Output:
|
|||
|
|
|
With GNU awk (versions less than 4):
With GNU awk >= 4:
|
|||
|
|
|
This Perl one-liner seems to do the job:
|
|||
|
|