I have data similar to this
prop1: val
prop2: val
val continued
continued still
prop3: val
I want to turn it into
prop1: val
prop2: val val continued continued still
prop3: val
so that it is easier to filter the props I want. I can't think of a simple way to do this.
Any suggestions? using awk/sed/tr/whatever.