BSD 2 development
[unix-history] / src / ctags.sh
CommitLineData
fe3aaec5
BJ
1# ctags
2# (c) 1979 Regents of the University of California
3grep '^[a-z].*)$' $* >/tmp/$$
4ed - /tmp/$$ << 'EOF'
51,$s/(.*//
61,$s/\(.*\):\(.*\)/\2 \1 \/^\2\//
7w
8q
9'EOF'
10sort -d /tmp/$$ | uniq >tags
11rm /tmp/$$