[Icarus Sparry <i.sparry...@gmail.com>]

> The 'modern' way to do this is
> find . -maxdepth 2 -name '*.html' -exec grep whatever {} +

Actually, I think it should be

find . -maxdepth 2 -name '*.html' -exec grep whatever /dev/null {} +

because grep behaves differently when given only one filename as opposed
to several.

-- 
* Harald Hanche-Olsen     <URL:http://www.math.ntnu.no/~hanche/>
- It is undesirable to believe a proposition
  when there is no ground whatsoever for supposing it is true.
  -- Bertrand Russell
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to