[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: M-x grep: /dev/null appending workaround
From: |
Jari Aalto |
Subject: |
Re: M-x grep: /dev/null appending workaround |
Date: |
Thu, 28 Oct 2004 01:07:46 +0300 |
User-agent: |
Gnus/5.110003 (No Gnus v0.3) Emacs/21.3 (windows-nt) |
* Wed 2004-10-20 Dan Jacobson <jidanni AT jidanni.org> gnu.emacs.bug
| I have outsmarted M-x grep's /dev/null appending:
| (grep "zgrep -n -e TLS main*|colrm 77 #") for example.
| Making zgrep -n -e TLS main*|colrm 77 # /dev/null
| be what gets executed. You might want to document this workaround, or
| better yet, stop appending the /dev/null hack.
I would use quotes around expression:
... -e 'TLS main*|colrm 77 #'
The /dev/null is unavoidable (because of old grep/egrep implementations)
Jari