Back again with another question.
The file I have right now is of the following format:
1234,
1234,
1-23-4
I would like to do two things with this file.
First, remove the - characters in the third line. Therefore, 1-23-4 ==> 1234.
Second, I would like to make it all print in one line.
The final result should look like:
1234,1234,1234
Is this possible using line commands in a script? Kindly advise.
Thank you in advance for your time and help.