mirror of https://github.com/postgres/postgres
parent
97c904610d
commit
f5316239b8
@ -0,0 +1,10 @@ |
||||
#!/bin/sh |
||||
trap "rm -f /tmp/$$" 0 1 2 3 15 |
||||
rm -f ./tags |
||||
find `pwd`/ -type f -name '*.[chyl]' -print|xargs ctags -t -a -f tags |
||||
sort tags >/tmp/$$ && mv /tmp/$$ tags |
||||
|
||||
find . -type d -print |while read DIR |
||||
do |
||||
[ "$DIR" != "." ] && ln -f -s `pwd`/tags $DIR/tags |
||||
done |
@ -1,6 +1,6 @@ |
||||
#!/bin/sh |
||||
# |
||||
# $Header: /cvsroot/pgsql/src/backend/Attic/makeID,v 1.1.1.1 1996/07/09 06:21:08 scrappy Exp $ |
||||
# $Header: /cvsroot/pgsql/src/Attic/MAKE_ID,v 1.1 1996/10/03 17:26:13 momjian Exp $ |
||||
# |
||||
|
||||
|
Loading…
Reference in new issue