Update of /cvsroot/happydoc/HappyDoc3/tools
In directory usw-pr-cvs1:/tmp/cvs-serv4318/tools
Added Files:
run_etags
Log Message:
Script to run etags.
--- NEW FILE: run_etags ---
#!/bin/bash
#
# $Id: run_etags,v 1.1 2002/11/17 15:06:06 doughellmann Exp $
#
# Script to run etags against the source tree.
#
rm -f TAGS
echo -n "Running etags..."
find . \
\( -type f \( -name '*.py' -o -name '*.[ch]' \) \) \
-print \
\
| etags -l auto \
--regex='/[ \t]*\def[ \t]+\([^ :(\t]+\)/\1/' \
-
echo "Done"
|