head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	93.06.25.04.18.12;	author aoki;	state Exp;
branches;
next	;


desc
@script to generate a big etags file for EVERYTHING
@


1.1
log
@Initial revision
@
text
@#!/bin/sh
#
# $Header: /home2/aoki/master/src/RCS/bigTAGS,v 1.1 1993/06/25 04:15:06 aoki Exp $
#
rm -f TAGS
for i in backend libpq bin; do
	find $i \( -name '*.[chy]' -o -name '*.gen' -o -name '*.lex' \) \
		-print | xargs etags -t -a
done
@
