Add execute permission.

This commit is contained in:
Bruce Momjian 1996-10-08 04:09:50 +00:00
parent dcef39f03b
commit dd09982f3e
1 changed files with 10 additions and 0 deletions

10
src/MAKE_CTAGS Normal file
View File

@ -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