I'm looking for a method to grep for multiple atoms e.g. "foo" and "bar".
I'm aware i can use
grep 'foo' file | grep 'bar'
to get both of them but i was wondering if there was a more efficient way. Any googleing seems to only throw results for an 'or' based search rather than 'and'.
|
|
|
|
|
|
|
I doubt you'll get a more efficient way than the one you've selected. Given that the grep executable will already be mapped into memory when the second copy runs, and that you have no backtracking in your regex (unlike an Here's some sample timings to illustrate the point:
From this admittedly small sample, the pipeline version takes less system and user CPU time, hence is more efficient. The input file consists of 1000 copies of:
so you can run your own tests. Her's the same test with 100,000 lines of input - you can see the questioners method is more efficient:
|
|||
|
|
|
|
This might be efficient. :) Loading |
||
|
|
|
|
||||||||||
|
