From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.help Subject: Re: eshell: find: missing argument to `-exec' ? Date: Sat, 12 Sep 2009 11:27:37 +0300 Message-ID: <837hw41sau.fsf@gnu.org> References: <123f4568-dd1d-450d-81e2-bea9dbd85b69@x5g2000prf.googlegroups.com> <7cbplhodme.fsf@anevia.com> <9a227d4c-aa87-4222-95bd-6afb30077d9c@j9g2000prh.googlegroups.com> NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1252744093 22523 80.91.229.12 (12 Sep 2009 08:28:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 12 Sep 2009 08:28:13 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Sep 12 10:28:06 2009 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.50) id 1MmNxi-0005qt-QK for geh-help-gnu-emacs@m.gmane.org; Sat, 12 Sep 2009 10:28:03 +0200 Original-Received: from localhost ([127.0.0.1]:49753 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MmNxi-0007x8-68 for geh-help-gnu-emacs@m.gmane.org; Sat, 12 Sep 2009 04:28:02 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MmNxM-0007ud-0q for help-gnu-emacs@gnu.org; Sat, 12 Sep 2009 04:27:40 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MmNxL-0007sy-32 for help-gnu-emacs@gnu.org; Sat, 12 Sep 2009 04:27:39 -0400 Original-Received: from [199.232.76.173] (port=49988 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MmNxK-0007sm-Ry for help-gnu-emacs@gnu.org; Sat, 12 Sep 2009 04:27:38 -0400 Original-Received: from mtaout4.012.net.il ([84.95.2.10]:30016 helo=mtaout3.012.net.il) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MmNxK-0000i5-Ex for help-gnu-emacs@gnu.org; Sat, 12 Sep 2009 04:27:38 -0400 Original-Received: from conversion-daemon.i_mtaout3.012.net.il by i_mtaout3.012.net.il (HyperSendmail v2004.12) id <0KPU00K00NF6VP00@i_mtaout3.012.net.il> for help-gnu-emacs@gnu.org; Sat, 12 Sep 2009 11:27:37 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([84.228.50.163]) by i_mtaout3.012.net.il (HyperSendmail v2004.12) with ESMTPA id <0KPU003Q9NI0XE30@i_mtaout3.012.net.il> for help-gnu-emacs@gnu.org; Sat, 12 Sep 2009 11:27:37 +0300 (IDT) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-operating-system: by monty-python.gnu.org: Solaris 9.1 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:68072 Archived-At: > From: Xah Lee > Date: Fri, 11 Sep 2009 11:53:15 -0700 (PDT) > > Sorry, i had big typo in the above. This works: > > find . -name "*sch*" -exec echo {} ';' > > Thanks. Still, this probably should probably be considered a bug. Is > there some technical reason eshell having problems with the \; ? Yes, there is: you cannot have \ be an escape character on Windows (without some major annoyances), because it serves as a directory separator.