I would like to use sed to change a line breaks preceding a specific character and replace it with a simple space:
Example:
<link rel="colorSchemeMapping
"
href="marinedrugs-790193-original.fld/colorschememapping.xml">
Should be:
<link rel="colorSchemeMapping" href="marinedrugs-790193-original.fld/colorschememapping.xml">
I'm aware of the
':a;N;$!ba;s/\n/ /g'
but am willing to add the double quotes as being mandatory preceding the line break.