Skip to content
Snippets Groups Projects
Commit 00b1fb07 authored by Bryan Henderson's avatar Bryan Henderson
Browse files

Try to fix mode.

parent 33b433b1
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
trap "rm -f /tmp/$$" 0 1 2 3 15
rm -f ./TAGS
find `pwd`/ -type f -name '*.[chyl]' -print | \
xargs etags --append --output=TAGS
find . -type d -print | \
while read DIR; do
[ "$DIR" != "." ] && ln -f -s `pwd`/TAGS $DIR
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment