I have following data file
-----------------------------------
abc 123
abc 456
xyz 123
xyz 456
pqr 123
--and so on
----------------------------------
I am trying to get output in following format using awk.
------------------
abc 123;456
xyz 123;456
pqr 123;
------------------
Any help from al you awk Guru's is highly appreciated.
Thanks
-----------------------------------
abc 123
abc 456
xyz 123
xyz 456
pqr 123
--and so on
----------------------------------
I am trying to get output in following format using awk.
------------------
abc 123;456
xyz 123;456
pqr 123;
------------------
Any help from al you awk Guru's is highly appreciated.
Thanks