If looking through code:
du -a . | xargs g pattern >[2]/dev/null

If looking through all files:
du -a . | xargs grep -n foo >[2]/dev/null

The -n is to be friendly with acme.

This presumes you have (at least a cheap knockoff of) xargs.

Reply via email to