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

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

Re: TAGS


From: Friedrich Dominicus
Subject: Re: TAGS
Date: Mon, 05 Jan 2004 08:13:59 +0100
User-agent: Gnus/5.1002 (Gnus v5.10.2) XEmacs/21.4 (Reasonable Discussion, linux)

"Jack Wang" <jw2000@excite.com> writes:

> Hi all:
>
>
>
> How to generate TAGS file in a complex directory structure (with
> many subdirectories)?  
depends on the Shell and number of files you're using in zsh e.g you
can just get away with
etags **/*.{c,cc,h} but if there are too many files the command line
will get overflowed.

The other thing which works 

find . -name "*.{c,cc,h}" -exec etags -a -o SOME-TAGS-FILE {} \;

which will call etags on any file and append that stuff to
SOME_TAGS-FILE, well minor errors I may have introduced ;-)

Regards
Friedrich


reply via email to

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