From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1ME2tT-0007fg-Ai for garchives@archives.gentoo.org; Tue, 09 Jun 2009 15:05:43 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99720E0501; Tue, 9 Jun 2009 15:05:13 +0000 (UTC) Received: from dcnode-01.unlimitedmail.net (smtp.unlimitedmail.net [94.127.184.242]) by pigeon.gentoo.org (Postfix) with ESMTP id 403A8E053F for ; Tue, 9 Jun 2009 15:05:13 +0000 (UTC) Received: from ppp.zz ([137.204.208.78]) (authenticated bits=0) by dcnode-01.unlimitedmail.net (8.14.3/8.14.3) with ESMTP id n59F54je015559 for ; Tue, 9 Jun 2009 17:05:05 +0200 From: Etaoin Shrdlu To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] Finding orphaned libs Date: Tue, 9 Jun 2009 17:21:32 +0200 User-Agent: KMail/1.9.9 References: <200906082244.18324.alan.mckinnon@gmail.com> <58965d8a0906090742i559034cdoaea11bcf99e79e39@mail.gmail.com> <20090609155240.26cc396b@zaphod.digimed.co.uk> In-Reply-To: <20090609155240.26cc396b@zaphod.digimed.co.uk> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906091721.32939.shrdlu@unlimitedmail.org> X-UnlimitedMail-MailScanner-From: shrdlu@unlimitedmail.org X-Spam-Status: No X-Archives-Salt: cca477ae-6488-407c-b853-28f53e196899 X-Archives-Hash: 86b2acfd75a789e41425a536a477b955 On Tuesday 9 June 2009, 16:52, Neil Bothwick wrote: > On Tue, 9 Jun 2009 09:42:34 -0500, Paul Hartman wrote: > > -exec command {} + > > This variant of the -exec action runs the specified command on the > > selected files, but the command line is built by appending each > > selected file name at the end; the total number of invocations of > > the command will be much less than the number of matched files. The > > command line is built in much the same way that xargs builds its > > command lines. Only one instance of `{}' is allowed within the > > command. The command is executed in the starting directory. > > How does this handle quoted filenames? > > Does -exec command "{}" + > > do > > command "file 1 file 2 file 3" > > or > > command "file 1" "file 2" "file 3" The latter.