It might take a long time traversing all the directory tree and
greppin' all the files. You can try to restrict the search by excluding some directories and use the proper options of grep to ignore binary files. Here is an example:
Code:
find / \( -wholename /etc -o -wholename /usr -o -wholename /tmp -o -wholename /var -o -wholename /proc \) -prune -o -type f -exec grep -i -HI "A takle" {} \;
I don't know if you're familiar with the -prune predicate of find. Anyway, you can add/remove more
Code:
-wholename /some/path
expressions inside the escaped parentheses and separated by the logical operator -o in order to exclude or include more system directories. For an explanation of -prune, you can take a look at this
post, self-citation, I know...
Hope this helps!