unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Jari Aalto <jari.aalto@cante.net>
Subject: Re: compile.el::grep-program - should it use egrep instead of grep?
Date: Mon, 12 Sep 2005 18:58:52 +0300	[thread overview]
Message-ID: <1x3ujn0j.fsf@cante.net> (raw)
In-Reply-To: je64t6z5ng.fsf@sykes.suse.de

Andreas Schwab <schwab@suse.de> writes:

| Jari Aalto <jari.aalto@cante.net> writes:
| 
| > Could you elaborate a little. The syntax of grep is not sufficient to
| > make daily searches with M-x find-dired or M-x grep-find that happen
| > frequently during searching system log files or looking into program
| > and text document files.
| 
| In GNU grep there is no expressive difference between BREs and EREs, only
| the syntax differs.

     $ grep --version
     grep (GNU grep) 2.5.1

     $ echo -e "this\nthat" |  grep '(this|that)'
     <nothing>

I assume you meant that the OS's grep binary package installs wrappers
around the grep(1) programs to call it with various arguments. However
all the systems do define egrep(1) which use ERE syntaxes, so the
appropriate call would always be even in GNU system:

     $ echo -e "this\nthat" | egrep '(this|that)'
     this 
     that

It's true that W32 can't use egrep shell script - But in the other
hand it's not GNU system. And, 99% of the Emacs who need *nix features
will install Cygwin, which can use the egrep(1) shell wrapper and
other utilities like cvs, svn, diff, etc.

Jari

  reply	other threads:[~2005-09-12 15:58 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-09-07  7:05 compile.el::grep-program - should it use egrep instead of grep? Jari Aalto
2005-09-08  2:41 ` Richard M. Stallman
2005-09-08  5:54 ` Jari Aalto
2005-09-08 17:55   ` Richard M. Stallman
2005-09-12 14:31     ` Jari Aalto
2005-09-12 15:07       ` Andreas Schwab
2005-09-12 15:58         ` Jari Aalto [this message]
2005-09-12 16:30           ` Andreas Schwab
2005-09-12 18:08           ` Stefan Monnier
2005-09-13 15:54       ` Richard M. Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1x3ujn0j.fsf@cante.net \
    --to=jari.aalto@cante.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).