home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s053 / 26.ddi / root.3 / usr / ucb / indxbib < prev    next >
Encoding:
Text File  |  1990-12-20  |  766 b   |  28 lines

  1. #!/sbin/sh
  2. #    Copyright (c) 1990 UNIX System Laboratories, Inc.
  3. #    Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 AT&T
  4. #      All Rights Reserved
  5.  
  6. #    THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF
  7. #    UNIX System Laboratories, Inc.
  8. #    The copyright notice above does not evidence any
  9. #    actual or intended publication of such source code.
  10.  
  11. #ident    "@(#)//usr/ucb/indxbib.sl 1.1 4.0 12/08/90 43684 AT&T-USL"
  12. #       Copyright(c) 1988, Sun Microsystems, Inc.
  13. #       All Rights Reserved
  14.  
  15. #
  16. #    indxbib sh script
  17. #
  18. if test $1
  19.     then /usr/ucblib/reftools/mkey $* | /usr/ucblib/reftools/inv _$1
  20.     mv _$1.ia $1.ia
  21.     mv _$1.ib $1.ib
  22.     mv _$1.ic $1.ic
  23. else
  24.     echo 'Usage:  indxbib database [ ... ]
  25.     first argument is the basename for indexes
  26.     indexes will be called database.{ia,ib,ic}'
  27. fi
  28.