On Wed, 30 Dec 1998, I wrote: > To index everything but the English files: > > find . ! -name '*Engl.html' -print | index - Whoops! This isn't quite right. It should be: find . -name '*.html' -a ! -name '*Engl.html' -print | index - or: find . -type f -a ! -name '*Engl.html' -print | index -ehtml - - PaulReceived on Wed Dec 30 10:08:11 1998