>
> Hmm, maybe:
>
> $ awk '/^comment "[^"]*$/ { ORS=" " } /"$/ { ORS="\n" } { print }'
> yourfile.txt
>Yes that works (after piping the file thru tr -d '\r' first). Thanks!
>
> Hmm, maybe:
>
> $ awk '/^comment "[^"]*$/ { ORS=" " } /"$/ { ORS="\n" } { print }'
> yourfile.txt
>Yes that works (after piping the file thru tr -d '\r' first). Thanks!