:
#ident	"@(#)vectorsinuse	1.2	90/08/16"
#ident "@(#)vectorsinuse	1.2 89/09/29"
#	@(#) vectorsinuse 1.2 89/01/25 
#	@(#) vectorsinuse 22.1 89/11/01 
#	vectorsinuse: print out the list of vectors currently specified
#		      in the sdevice file

[ ! "$ROOT" ] && ROOT="/."
cd $ROOT/etc/conf/cf.d

awk 'BEGIN { printf("8 i ") }
{ if ( $1 == "*" ) next ; { printf(" %d p c\n", $6)} }' sdevice | dc | sort -n | uniq | tr '\012' ' '
echo

