I need to search for a string in all subdirectories of the current directory I'm in.
For example, I might want to find all files that contain the word "import". I thought the following would work, but it does not:
The man pages for grep don't seem to help.
Thanks...
For example, I might want to find all files that contain the word "import". I thought the following would work, but it does not:
Code:
grep import */*
The man pages for grep don't seem to help.
Thanks...