I have a data like below:
abcd
join abcd
efgh
join efgh
I want to join the two consecutive pair into one line. Resulting:
abcd join abcd
efgh join efgh
How can I do it in Perl/AWK?
|
|||
|
My first instinct:
Somewhat more concise version inspired by @kev's sed solution:
But I think sed wins this round. |
||||
|
The simplest way is:
This joins using a space instead of a tab:
|
|||||||||||||
|
|
Perl:
Golf challenge: Shorten the above by 5 chars. Golf challenge solution:
|
|||||||||||
|
|
|||
|
|
joinitself explicit in the data or is that just an unfortunate coincidence? – sarnold Apr 19 '12 at 1:21