From owner-freebsd-doc@FreeBSD.ORG Thu Feb 19 11:44:06 2009 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 00AFB1065670 for ; Thu, 19 Feb 2009 11:44:06 +0000 (UTC) (envelope-from joseph.koshy@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.175]) by mx1.freebsd.org (Postfix) with ESMTP id C99978FC18 for ; Thu, 19 Feb 2009 11:44:05 +0000 (UTC) (envelope-from joseph.koshy@gmail.com) Received: by wf-out-1314.google.com with SMTP id 27so384029wfd.7 for ; Thu, 19 Feb 2009 03:44:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=7qXrK6kNWPJ5bvaXoX/YzZrDyJnlkyl2NyCckIIfaWs=; b=D11V03yXOi9yCc7Fmz0YAfK035+5lItEIRR5ABlpCtH9o1HH8xZ3pMmo50bc6ydMpg ovWZhNi+Z/ZcRIOdgwkaQzjptBUOOlJaroGQIJCJDV5d6BaPAjjJQxhHQNkFpfGRc+87 mZEkveUCE4JPw4rS5cmQsjw31JSE4kAI1lDWY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=OuZ3ow8d0nZlThWrnqemYD0JyXLGn0JC0SB76xMzo1Wc15ikAGgcs7z3HJHx3pqRb6 tR3zNiXrQz0sXlSEQtj+5WCEgoUlpJGs3qLW08VZVi8O+MvZk7+anQH1jxZ+Wz3lLJiV lnz29aERq453oNRnVtkcJ2IquN6Voybtzj/a8= MIME-Version: 1.0 Received: by 10.142.135.16 with SMTP id i16mr4215077wfd.250.1235042384705; Thu, 19 Feb 2009 03:19:44 -0800 (PST) In-Reply-To: References: Date: Thu, 19 Feb 2009 16:49:44 +0530 Message-ID: <84dead720902190319s5e8b0b10rb2438a62f1587785@mail.gmail.com> From: Joseph Koshy To: Martin Rakhmanov Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-doc@freebsd.org Subject: Re: xargs vs -exec X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Feb 2009 11:44:06 -0000 > Is there any reason to use xargs instead of find's -exec option? There would be fewer new processes created with xargs(1), compared to using find -exec. Koshy