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
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