How would I join two lines using awk or sed?
for e.g.:
I have data that looks like this:
abcd joinabcd efgh joinefgh ijkl j
awk '!(NR%2){print$0p}{p=$0}' infile