-r parameter not working in grep
After reading a number of grep tutorials, I try:
grep -irl '12:00' *.log
which finds all files that end with .log
and contain "12:00"
but ONLY IN THE CURRENT DIRECTORY
I have another directory called "backupLogs" which it doesn't seem to search through
the -r doesn't seem to work
What am I doing wrong?
|