The accepted way of doing this is with find . -xdev -print0 |xargs -0 grep foo
Indeed, even grep -r is considered to be bloat, since "find" supports many options which don't each need to be implemented in grep, too. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

