Hal Wigoda wrote: > 2) find <dirname> -print -type f | xargs grep -l index.html Or, if you need to handle filenames which contain whitespace characters: find <dirname> -type f -print0 | xargs -0 grep -l index.html -- Glynn Clements <glynn.clements@xxxxxxxxxx> - : send the line "unsubscribe linux-admin" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html