I would like to know how to combine columns with duplicate headers in a file using bash/sed/awk.
x y x y
s1 3 4 6 10
s2 3 9 10 7
s3 7 1 3 2
to :
x y
s1 9 14
s2 13 16
s3 10 3
|
Adjust the printf lines in the obvious ways for different output formatting if you like. Here's the bash equivalent in response to the comments elsethread. Do NOT use this, the awk solution is the right one, this is just to show how you should write it in bash IF you wanted to do that for some inexplicable reason:
Note that it runs in roughly the same order of magnitude duration as the awk script (see comments elsethread). Caveat - I never write bash scripts for processing text files so I'm not claiming the above bash script is perfect, just an example of how to approach it in bash for comparison with the other script in this thread that I claimed should be rewritten! |
||||
|
|
This not a one line. You can do it using Bash v4, Bash's dictonaries, and some shell tools. Execute the script below with the name of the file to process a parameter
Here is the script:
|
|||||||||||
|
|
Yet another AWK alternative:
|
|||||
|
No doubt there is a better way to display the heading but my |
|||||||||||||
|
|
Here's a Perl solution, just for fun:
|
|||
|
|