[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: etags for C++
From: |
Andreas Schwab |
Subject: |
Re: etags for C++ |
Date: |
Fri, 22 Feb 2002 16:31:38 +0100 |
User-agent: |
Gnus/5.090005 (Oort Gnus v0.05) Emacs/21.2.50 (ia64-suse-linux) |
Tak Ota <address@hidden> writes:
|> etags is OK. For practical use etags must run on all relevant source
|> files in the target project by something like this.
|>
|> find . -name "*.[chCH]" -print | etags -
|>
|> I am asking if we can provide easier way to perform above task. In
|> above syntax manipulating "*.[chCH]" to include .cc, .cpp and .cxx is
|> not trivial.
What's wrong with this:
find . \( -name "*.[chCH]" -o -name "*.cc" -o -name "*.cpp" -o -name
"*.cxx" \) -print
Andreas.
--
Andreas Schwab, SuSE Labs, address@hidden
SuSE GmbH, Deutschherrnstr. 15-19, D-90429 Nürnberg
Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
"And now for something completely different."
- etags for C++, Tak Ota, 2002/02/19
- Re: etags for C++, Richard Stallman, 2002/02/20
- Re: etags for C++, Eli Zaretskii, 2002/02/21
- Re: etags for C++, Tak Ota, 2002/02/21
- Re: etags for C++, Tak Ota, 2002/02/21
- Re: etags for C++, Eli Zaretskii, 2002/02/21
- Re: etags for C++, Tak Ota, 2002/02/21
- Re: etags for C++, Francesco Potorti`, 2002/02/22
- Re: etags for C++, Tak Ota, 2002/02/22
- Re: etags for C++,
Andreas Schwab <=
- Re: etags for C++, Richard Stallman, 2002/02/23
- Re: etags for C++, Tak Ota, 2002/02/24
- Re: etags for C++, Richard Stallman, 2002/02/24
- Re: etags for C++, Eli Zaretskii, 2002/02/25
- Re: etags for C++, Francesco Potorti`, 2002/02/25
- Re: etags for C++, Tak Ota, 2002/02/25
- Re: etags for C++, Richard Stallman, 2002/02/26