Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 00b1fb0

Browse files
author
Bryan Henderson
committed
Try to fix mode.
1 parent 33b433b commit 00b1fb0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/MAKE_ETAGS

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)