From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.help Subject: Re: help with tags Date: 31 Jul 2003 08:43:38 +0200 Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <844r146ock.fsf@slowfox.is.informatik.uni-duisburg.de> Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1059630163 21261 80.91.224.249 (31 Jul 2003 05:42:43 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 31 Jul 2003 05:42:43 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jul 31 07:42:41 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19i6D3-0005We-00 for ; Thu, 31 Jul 2003 07:42:41 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19i6Cc-0003mW-M6 for geh-help-gnu-emacs@m.gmane.org; Thu, 31 Jul 2003 01:42:14 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19i6CL-0003ip-RW for help-gnu-emacs@gnu.org; Thu, 31 Jul 2003 01:41:57 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19i6CK-0003gI-8A for help-gnu-emacs@gnu.org; Thu, 31 Jul 2003 01:41:56 -0400 Original-Received: from [207.232.27.5] (helo=WST0054) by monty-python.gnu.org with asmtp (Exim 4.20) id 19i6CJ-0003T1-Fr for help-gnu-emacs@gnu.org; Thu, 31 Jul 2003 01:41:56 -0400 Original-To: help-gnu-emacs@gnu.org In-reply-to: <844r146ock.fsf@slowfox.is.informatik.uni-duisburg.de> (kai.grossjohann@gmx.net) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:11492 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:11492 > From: kai.grossjohann@gmx.net (=?iso-8859-1?q?Kai_Gro=DFjohann?=) > Newsgroups: gnu.emacs.help > Date: Wed, 30 Jul 2003 17:11:55 +0200 > > find . -name '*.[hc]' -print | xargs etags -a The "xargs" part is not necessary; the following will do: find . -name '*.[hc]' -print | etags - This variant has the advantage of not requiring `xargs', which might be a problem on non-Posix platforms. It is also faster.