The simplest solution is just to change the grep to:
Code:
# even simpler might be just to use
grep "Rows Read"
Or, if this might match the wrong rows, use a more complete match like:
Code:
# match against Rows Read followed by any number of spaces then
# an = sign and any number of spaces and then a number
grep "Rows Read *= *[0-9][0-9]*"
No doubt, in time, you'll give us enough information to answer your query fully
Mike