From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: maierh@myself.com Newsgroups: gmane.emacs.help Subject: Re: how to create a TAG file for the whole linux kernel Date: Mon, 16 Sep 2002 08:17:20 +0200 Organization: T-Online Sender: help-gnu-emacs-admin@gnu.org Message-ID: References: <3d856f72_1@nopics.sjc> Reply-To: Harald Maier NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1032157560 15991 127.0.0.1 (16 Sep 2002 06:26:00 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 16 Sep 2002 06:26:00 +0000 (UTC) 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 17qpKX-00049d-00 for ; Mon, 16 Sep 2002 08:25:57 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17qpKn-0002oa-00; Mon, 16 Sep 2002 02:26:13 -0400 Original-Path: shelby.stanford.edu!nntp.stanford.edu!newsfeed.stanford.edu!cyclone.bc.net!snoopy.risq.qc.ca!aotearoa.belnet.be!news.belnet.be!newsfeed.stueberl.de!newsfeed01.sul.t-online.de!newsmm00.sul.t-online.com!t-online.de!news.t-online.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 18 Original-X-Trace: news.t-online.com 1032157041 00 2438 PxTKbGmSFYx3z 020916 06:17:21 Original-X-Complaints-To: abuse@t-online.com X-Sender: 320041125923-0001@t-dialin.net User-Agent: Gnus/5.090007 (Oort Gnus v0.07) Emacs/21.2.90 (i386-mingw-nt5.0.2195) Cancel-Lock: sha1:9NnkLF9JJfB6bACRfE38p4RTDhU= Original-Xref: nntp.stanford.edu gnu.emacs.help:104932 Original-To: help-gnu-emacs@gnu.org Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.help:1487 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:1487 kani writes: > Hi all, > > Please excuse me if this not he right group for this question. > so, how can i create a TAG file for the whole linux kernel ? It's the right group. Go to the root directory and execute the following command (not tested): $ find $PWD \( -name "*.c" -o -name "*.h" \) | xargs etags -o Usage of $PWD produces absolute path names. should contains the TAG file name. If the -o option is omitted then etags creats a file with the name TAGS in $PWD. Note, in that case you need write permissions for the directory $PWD. Harald