Skip to content
Snippets Groups Projects
Commit 03b4fc72 authored by Peter Eisentraut's avatar Peter Eisentraut
Browse files

Remove useless (and insecure) temp file handling.

parent 3a819b07
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/bin/sh
# $PostgreSQL: pgsql/src/tools/make_etags,v 1.3 2006/03/11 04:38:41 momjian Exp $ # $PostgreSQL: pgsql/src/tools/make_etags,v 1.4 2009/01/13 19:32:29 petere Exp $
trap "rm -f /tmp/$$" 0 1 2 3 15
rm -f ./TAGS rm -f ./TAGS
find `pwd`/ -type f -name '*.[chyl]' -print | \ find `pwd`/ -type f -name '*.[chyl]' -print | \
xargs etags --append -o TAGS xargs etags --append -o TAGS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment