Using an awk script as below to search through a file,
Code:
awk '/Single-Item/{n++; if (n==3)f=3;} f{print;f--}'
I get a table output as below
Quote:
<td scope='row' align='right' class='fieldlabel' height='30'><span class=defaultLabelStyle>History</span></td>
<td class='defaultcolumnspacer'> : </td>
<td>6.423 mins</td>
|
I need the results of the third cell...."6.423 mins"
I am guessing another awk script to iterate through td string would be helpful, but is there any better way to do it?
Thanks in advance for reading and giving your valuable time