[support] Eliminating bot-noise

Ivan Sergio Borgonovo mail at webthatworks.it
Fri Aug 31 07:51:28 UTC 2007


On Thu, 30 Aug 2007 20:27:34 +0200
"M. Fioretti" <mfioretti at nexaima.net> wrote:

> There is probably no need to start python or other interpreted
> languages. Something like this:
> 
> grep -v FIRST_IRRELEVANT_PATTERN log_file | \
> grep -v SECOND_IRRELEVANT_PATTERN         | \
> grep -v THIRD_IRRELEVANT_PATTERN          | \

N forks.

grep -vE '(FIRST_IRRELEVANT_PATTERN)|(SECOND_IRRELEVANT_PATTERN)...'

oh btw this doesn't make it the right solution, it should just make
yours a bit faster.

-- 
Ivan Sergio Borgonovo
http://www.webthatworks.it



More information about the support mailing list