Yeah, best not to write e-mails when answering the phone. -name would be better.
-----Original Message----- From: Mariusz Kruk [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 26, 2005 9:55 AM To: debian-user@lists.debian.org Subject: Re: find Piszcz, Justin napisaĆ(a): > Sort of. > > find . -type '*.c' -exec grep "my_text" {} \; No! Never use exec this way if the command you use accepts multiple arguments. Use xargs. (-type '*.c' is a mistake anyway ;->). You should rather try find . -type f -name '*.c' -print0 | xargs -0 grep "whatever" -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]