I have managed to make grep output some numeric data, as so:
To import this into a spreadsheet, I need to convert alternate newlines into some other character (space, tab, or comma are fine), to get something like:
How would I use sed (or any other standard Linux tool, but sed seems like what to use) to do this?
Code:
280.000 5.549325 290.000 5.607368 300.000 5.664339
Code:
280.000,5.549325 290.000,5.607368 300.000,5.664339
Comment