help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: help with tags


From: Eli Zaretskii
Subject: Re: help with tags
Date: 31 Jul 2003 08:43:38 +0200

> 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.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]