input file:

$ cat t.txt
id1;value1_1
id1;value1_2
id2;value2_1
id3;value3_1
id4;value4_1
id4;value4_2
id5;value5_1

result would be:

id1;value1_1;id1;value1_2
id3;value3_1
id4;value4_1;id4;value4_2
id5;value5_1

using sed or awk. Please give your opinion.

link|improve this question
Is a requirement to use that commands? This can be done in bash with a for loop. – Francisco Puga Nov 20 '11 at 11:13
the first choice is using awk or sed – user1042891 Nov 20 '11 at 11:43
2  
btw, you have asked two quite similar questions so far. have you considered to accept correct answers for your questions? the other question from you: stackoverflow.com/questions/8103167/… – Kent Nov 20 '11 at 11:55
Correct, but using the previous awk statement, lines like id2;value2_1 , id3;value3_1, .. are not printed – user1042891 Nov 20 '11 at 12:44
If you're not getting the answer you desire, it is probably because you're not providing the right information in your question. Please read this excellent guide: tinyurl.com/so-hints . Please work on improving existing questions, rather than rephrasing them as new ones. – Johnsyweb Nov 21 '11 at 9:47
feedback

3 Answers

Here's one way to do it:

awk -F';' 'BEGIN { getline; id=$1; line=$0 } { if ($1 != id) { print line; line = $0; } else { line = line ";" $0; } id=$1; } END { print line; }' t.txt

Explanation:

Set field separator to ;:

-F';'

Start by reading the first line of input (getline), save the first field ($1) as id, and the first line ($0) as line:

BEGIN { getline; id=$1; line=$0 }

For each line of input, check if the first field differs from the stored id:

if ($1 != id)

If it does, then print the saved line and store the new one ($0):

print line; line = $0;

Otherwise, append the new line to the stored line(s):

line = line ";" $0;

And save the new id:

id=$1

At the end, print whatever is left in line:

END { print line; }
link|improve this answer
1  
Thanks for the detailed explanation! +1 :) – Jaypal Singh Nov 20 '11 at 12:09
Thank you for the solution and explanation. It works – user1042891 Nov 20 '11 at 12:11
It's customary to mark an answer as correct, when it is. =) You can read more about how to do that in the FAQ. – J. Steen Nov 21 '11 at 12:11
feedback

I guess in your result example, the id2; line is missing by mistake, right?

anyway, you could try the awk line below:

awk -F';' '{a[$1]=($1 in a)?a[$1]";"$0:$0}END{for(x in a)print a[x]}' yourFile|sort

output would be:

id1;value1_1;id1;value1_2
id2;value2_1
id3;value3_1
id4;value4_1;id4;value4_2
id5;value5_1
link|improve this answer
that is correct; the id2 line should be added. It works. Thank you – user1042891 Nov 20 '11 at 11:50
small remark: the result shows the beginning of each line a ';' char. – user1042891 Nov 20 '11 at 12:02
;id1;value1_1;id1;value1_2 ;id2;value2_1 ;id3;value3_1 ;id4;value4_1;id4;value4_2 ;id5;value5_1 – user1042891 Nov 20 '11 at 12:02
$ awk -F';' '{a[$1]=($1 in a)?a[$1]";"$0:$0}END{for(x in a)print a[x]}' < t.txt ;id1;value1_1;id1;value1_2 ;id2;value2_1 ;id3;value3_1 ;id4;value4_1;id4;value4_2 ;id5;value5_1 – user1042891 Nov 20 '11 at 12:12
feedback

This might work for you:

 sed -e '1{h;d};H;${x;:a;s/\(\([^;]*;\)\([^\n]*\)\)\n\2/\1;\2/;ta;p};d' t.txt

Explanation:

Slurp file in to hold space (HS) then on end-of-file swap to the HS and using substitution concatenate lines with duplicate keys and print. N.B. lines normally printed are all deleted.

EDIT:

The above solution works (as far as I know) but for large volumes is not very fast (read incredibly slow). This solution is better:

# cat -A /tmp/t.txt 
id1;value1_1$
id1;value1_2$
id2;value2_1$
id3;value3_1$
id4;value4_1$
id4;value4_2$
id5;value5_1$
# for x in {1..1000};do cat /tmp/t.txt;done | 
> sed -e ':a;N;s/^\([^;]*;\)\([^\n]*\)\n\1/\1\2;\1/;ta;P;D'| sort | uniq
id1;value1_1;id1;value1_2
id2;value2_1
id3;value3_1
id4;value4_1;id4;value4_2
id5;value5_1
link|improve this answer
Damn!! you are like the master of SED, potong. Any suggestions on good references? – Jaypal Singh Nov 21 '11 at 6:31
@Jaypal try here. – potong Nov 21 '11 at 7:03
First thank you for the effort. For small number of lines e.g. 77 lines this solution is OK. But for large number of lines e.g. 1200 lines, the result shows like:<br/> id1;value1_1<br/>;id1;value1_2<br/><br/> So the joining doesnot take place (i have problem with the comment editor - the <br/> does not result in '\n') – user1042891 Nov 21 '11 at 7:30
@user1042891 See EDIT - I've improved the solution and tested at volumes above 1200 lines. Data is tricky stuff it doesn't always respect your wishes and may need cleaning up beforehand. – potong Nov 21 '11 at 9:29
$ for x in {1..1000};do cat t.txt;done | sed -e ':a;N;s/^\([^;]*;\)\([^\n]*\)\n\1/\1\2;\1/;ta;P;D'| sort | uniq ===>result: ;id1;value1_2 id1;value1_2 id2;value2_1 id3;value3_1 ;id4;value4_2 id5;value5_1 id5;value5_1id1;value1_1 <br> I have a different result – user1042891 Nov 21 '11 at 10:36
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.