A 'grep -n " crop " ...', which returns 17 matches, shows that grep is missing the word crop on lines: 54, 2886, 5320, 9911, 19574. On those lines the word 'crop' is at the beginning or the end of the line, tricking out the grep query. A grep query that does work is 'grep -wc "crop" ...', which returns 22. |