On Tue, 17 Apr 2001, John Hawkinson wrote: > You should never use xargs like that, because it might call > grep with only one argument in which case a filename would not be > printened. Instead, use > > find . -name Makefile | xargs grep ^.PATH /dev/null | grep cksum Wouldn't grep -H do the same thing?