Summary: | app-portage/portage-utils: qgrep: should parse multiple args over entire file for broader search results | ||
---|---|---|---|
Product: | Portage Development | Reporter: | Pariksheet Nanda <pariksheet.nanda> |
Component: | Third-Party Tools | Assignee: | Fabian Groffen <grobian> |
Status: | RESOLVED FIXED | ||
Severity: | enhancement | ||
Priority: | Normal | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- |
Description
Pariksheet Nanda
2012-12-12 14:12:20 UTC
Ok, I see what you want, but grep doesn't support this behaviour either. Instead, it allows you to use alternatives in your regex argument, e.g. grep -E '(a|b)'. Since qgrep supports regexes, you can just do the same. In your scenario: qgrep -x '(cmake-utils|swig)' |