From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Some error info from configure.bat please Date: Sun, 03 Jul 2005 20:58:17 +0200 Message-ID: References: <42C65F1B.1030706@student.lu.se> <42C70919.2070705@student.lu.se> <42C73742.3020605@student.lu.se> <42C798DF.40200@student.lu.se> Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1120413690 24525 80.91.229.2 (3 Jul 2005 18:01:30 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 3 Jul 2005 18:01:30 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jul 03 20:01:27 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Dp8m0-0004wR-KX for ged-emacs-devel@m.gmane.org; Sun, 03 Jul 2005 20:00:56 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Dp8nA-0000lR-Ve for ged-emacs-devel@m.gmane.org; Sun, 03 Jul 2005 14:02:09 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Dp8mc-0000go-Rq for emacs-devel@gnu.org; Sun, 03 Jul 2005 14:01:36 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Dp8ma-0000fE-9E for emacs-devel@gnu.org; Sun, 03 Jul 2005 14:01:32 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Dp8ma-0000eg-3D for emacs-devel@gnu.org; Sun, 03 Jul 2005 14:01:32 -0400 Original-Received: from [192.114.186.24] (helo=legolas.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Dp8p8-0007vs-4t for emacs-devel@gnu.org; Sun, 03 Jul 2005 14:04:10 -0400 Original-Received: from HOME-C4E4A596F7 (IGLD-84-228-251-163.inter.net.il [84.228.251.163]) by legolas.inter.net.il (MOS 3.5.8-GR) with ESMTP id EUO23755 (AUTH halo1); Sun, 3 Jul 2005 20:58:20 +0300 (IDT) Original-To: Juanma Barranquero In-reply-to: (message from Juanma Barranquero on Sun, 3 Jul 2005 18:27:05 +0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:40241 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:40241 > Date: Sun, 3 Jul 2005 18:27:05 +0200 > From: Juanma Barranquero > Cc: emacs-devel@gnu.org > > On 7/3/05, Eli Zaretskii wrote: > > > (the "**" feature alone is something to kill for) > > Could you please describe it briefly? "fgrep STRING /foo/bar/**/*.c" will look for the named string in all *.c files in /foo/bar and in all its subdirectories, recursively (and is much faster than "fgrep -R STRING /foo/bar/**/* --include='*.c'" you will need without the ** feature). Likewise, "ls -ltrd d:/**/*.log" will produce a listing of all the *.log files on drive D:, in the order they were created/modified. Convinced?