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