In message
<[EMAIL PROTECTED]>, George
Sakkis wrote:

> $ find -name "*py" | xargs egrep "\bword\b"

Better:

    find -name '*.py' -exec grep -E "\bword\b" {} \;

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to