home *** CD-ROM | disk | FTP | other *** search
- :
- #
- # %Z% %M% %I% %D% %Q%
- #
- # Copyright (C) The Santa Cruz Operation, 1986, 1987.
- # Copyright (C) Microsoft Corporation, 1986, 1987.
- # This Module contains Proprietary Information of
- # The Santa Cruz Operation, Microsoft Corporation
- # and AT&T, and should be treated as Confidential.
- #
- # vectorsinuse: print out the list of vectors currently specified
- # in the master file
-
- awk 'BEGIN { printf("8 i ") }
- { if ( $1 == "*" ) next ; for ( i = 11 ; i <= NF ; i++ ) { printf(" %d p c\n", $i)} }' master | dc | sort -n | uniq | tr '\012' ' '
- echo
-
-