I kept running into this error when searching for a certain string, so I came up with a different way of searching:

find . -name *\* -exec grep -i -H -n ’string’ {} \;

Problem solved.

Leave a Reply

Back to top