I'm trying to extract data between
<td></td>
tags, but if i use something like
awk -F"<td>" {' $1 ":" $2 '}
it will output the remaining html data after column 1 and column 2, how can I extract inbetween both and only extract the data/string its self?