home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Distributions / ucb / spencer_2bsd.tar.gz / 2bsd.tar / src / ctags.sh < prev    next >
Text File  |  1980-02-17  |  206b  |  12 lines

  1. # ctags
  2. # (c) 1979 Regents of the University of California
  3. grep '^[a-z].*)$' $* >/tmp/$$
  4. ed - /tmp/$$ << 'EOF'
  5. 1,$s/(.*//
  6. 1,$s/\(.*\):\(.*\)/\2    \1    \/^\2\//
  7. w
  8. q
  9. 'EOF'
  10. sort -d /tmp/$$ | uniq >tags
  11. rm /tmp/$$
  12.