Hi guys,
I am new to AWK and am trying to create a script to join rows together based on a certain column value in common.
Ex:
p_id,cost,place,p_id,name,last_name,
,,,,,,
1,23,h,0,bob,bob,
1,14,g,1,frank,frank,
1,22,j,2,grant,grant,
1,12,k,3,dan,dan,
2,12,q,4,jack,jack,
3,11,o,,,,
,,,,,
Will...