> I had *MANY* lines ending with "Permission denied" which I manually > removed. Is there a grep option that will remove those lines before > they are printed? One of many ways: find /etc -type f | xargs grep newdawg 2> /dev/null Thomas