I need to grep for a string but only within certain files within a directory- eg:
grep -rl mystring "file1.txt file2.txt file3.blah"
what is the correct syntax? I am working in a Linux OS.
|
I need to grep for a string but only within certain files within a directory- eg:
what is the correct syntax? I am working in a Linux OS. |
|||
|
|
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Drop the quotes around the file names so that they are treated as separate parameters. Also, I don't think you need the -r since you are just specifying files and not folders.
You might want to check out http://ss64.com/bash/grep.html (or man grep) for other examples. |
|||
|
|
|
You can just give the list without quotes, it will list all results with the file they are in. eg:
|
|||
|
|