I've got the following result from a script that I have written which
is analysing some log files;
1 Date1
2 Data1
1 Date2
2 Data2
I want the file to read;
Date1 Data1
Date2 Data2
In logic what I'm want to do is remove all instnaces of a line break
which are followed by "2". I believe I'll need to use the 'sed'
command?
Any help apreciated.
Darren