From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Adam Funk Newsgroups: gmane.emacs.help Subject: Re: Why can't I use xargs emacs? Date: Wed, 03 Feb 2010 21:15:18 +0000 Message-ID: <6k5p37x1ai.ln2@news.ducksburg.com> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1265233542 16760 80.91.229.12 (3 Feb 2010 21:45:42 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 3 Feb 2010 21:45:42 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Feb 03 22:45:40 2010 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Ncn2a-0000BL-2G for geh-help-gnu-emacs@m.gmane.org; Wed, 03 Feb 2010 22:45:40 +0100 Original-Received: from localhost ([127.0.0.1]:52346 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ncn2Z-0001vX-FF for geh-help-gnu-emacs@m.gmane.org; Wed, 03 Feb 2010 16:45:39 -0500 Original-Path: news.stanford.edu!usenet.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 19 Original-X-Trace: individual.net PJQqpJQitguLlyEH6FnwdQvOUT6NzJr1kpMLYxL1QyNVmqkTxo X-Orig-Path: news.ducksburg.com!not-for-mail Cancel-Lock: sha1:5krs4ZcnCA5xnLO2uWDYYYGI2pM= sha1:szNk6K1KsAmAWmIDMbbfLRJKeCs= User-Agent: slrn/pre1.0.0-16/mm/ao (Ubuntu Intrepid) Original-Xref: news.stanford.edu gnu.emacs.help:176600 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:71669 Archived-At: On 2010-02-03, Thierry Volpiatto wrote: > Adam Funk writes: >> Nothing, thanks! What's the difference between these two? >> >> emacs -nw `find . -name '*.txt'` >> emacs -nw $(find . -name '*.txt') > Nothing that's the same, i prefer $() than backquote but that just a > choice. > > Though bash was speaking at one time to remove backquote construction or > make it obsoléte in future versions. > > Don't know what they did finally. Well, I know backquotes still work because I use them in bash scripts a lot. As pointed out elsewhere in the thread, however, $(...) is a lot easier to nest.