:
#	@(#) vectorsinuse 23.4 91/08/05 
#
#	Copyright (C) 1986-1991 The Santa Cruz Operation, Inc.
#		All Rights Reserved.
#	The information in this file is provided for the exclusive use of
#	the licensees of The Santa Cruz Operation, Inc.  Such users have the
#	right to use, modify, and incorporate this code into other products
#	for purposes authorized by the license agreement provided they include
#	this notice and the associated copyright notice with any such product.
#	The information in this file is provided "AS IS" without warranty.
#
#	vectorsinuse: print out the list of vectors currently specified
#		      in the sdevice file

cd `dirname $0`
[ "$ROOT" -o ! -f sdevice ] && cd $ROOT/etc/conf/cf.d

awk '($1 != "*") && ($2 == "Y") { printf("%d\n", $6) }' sdevice |
sort -n -u | tr '\012' ' '
echo
