Hi Rahul,
Sorry, I am not good at awk. But you can achieve the same with join function.
$ join -1 1 -2 1 -3 1 -4 1 -5 1 -6 1 -7 1 -8 1 -9 1 -10 1 -a1 file1 file2 file3 file4 file5 file6 file7 file8 file9 file10
Note: File should be...
Thanks for comment John. I was in hurry to post this query. Yes you are right I want to merge content of files into one big file using 1st column which is comman in all small files and this column is unique without any duplication. Paste command...
John Parker commented on an answer to a question 4285 days ago
Hi Rahul,
Sorry, your question is not properly explained. A little example will help.
I guess you would like to read the first column of many tab delimited files (>10) and merge them side by side in an output file. The easiest way to...
Hi Rahul,
Sorry, your question is not properly explained. A little example will help.
I guess you would like to read the first column of many tab delimited files (>10) and merge them side by side in an output file. The easiest way to...