Recursive GREP
It may happen that the option
–r (or
–d recurse) of the command grep is not accessible; you are therefore requested to use the command find.
An example, when searching for “
kioskea” in all files constantly from the directory:
find . -type f -print | xargs grep kioskea