home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 202.img / SCO386N2.TD0 / usr / sys / conf / vectorsinuse < prev    next >
Encoding:
Text File  |  1988-06-16  |  549 b   |  18 lines

  1. :
  2. #
  3. #    %Z% %M% %I% %D% %Q%
  4. #
  5. #    Copyright (C) The Santa Cruz Operation, 1986, 1987.
  6. #    Copyright (C) Microsoft Corporation, 1986, 1987.
  7. #    This Module contains Proprietary Information of
  8. #    The Santa Cruz Operation, Microsoft Corporation
  9. #    and AT&T, and should be treated as Confidential.
  10. #
  11. #    vectorsinuse: print out the list of vectors currently specified
  12. #              in the master file
  13.  
  14. awk 'BEGIN { printf("8 i ") }
  15. { if ( $1 == "*" ) next ; for ( i = 11 ; i <= NF ; i++ ) { printf(" %d p c\n", $i)} }' master | dc | sort -n | uniq | tr '\012' ' '
  16. echo
  17.  
  18.