We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33b433b commit 00b1fb0Copy full SHA for 00b1fb0
src/MAKE_ETAGS
@@ -0,0 +1,10 @@
1
+#!/bin/sh
2
+trap "rm -f /tmp/$$" 0 1 2 3 15
3
+rm -f ./TAGS
4
+find `pwd`/ -type f -name '*.[chyl]' -print | \
5
+ xargs etags --append --output=TAGS
6
+
7
+find . -type d -print | \
8
+while read DIR; do
9
+ [ "$DIR" != "." ] && ln -f -s `pwd`/TAGS $DIR
10
+done
0 commit comments