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

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

Re: How to find tags file in a recursive way?


From: Eli Zaretskii
Subject: Re: How to find tags file in a recursive way?
Date: Fri, 15 Jun 2007 17:34:05 +0300

> From: Petter Gustad <newsmail6@gustad.com>
> Date: 15 Jun 2007 12:36:32 +0200
> Original-Sender: newsmail6@gustad.com
> 
> find . -name '*.[chS]' -print0 | xargs -0 etags

There's no need to use xargs here, etags already knows how to read
file names from its standard input:

  find . -name '*.[chS]' | etags -




reply via email to

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