I would like to extract specific values from an unformatted text file to create a new file with each value on a single row. For example in this file...
Calculating outliers
Range of metric values: 0.016416 1.319020
Found 8 outliers over 0.3
Generating EVs
Found spikes at 77 132 140 142 155 156 157 175
Script complete
I would like to extract all values between "Found spikes at " and "Script complete" to create a file that would look like this
77
132
140
142
155
156
157
175
I should also note that there will not always be the same number of values extracted. There could be anywhere from 0 to 20+ values.