#!/usr/bin/ksh
#
# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
#
# ident	"@(#)getmakes	1.2	07/11/09 SMI"
#

#
# get a list of the Manufacturers from the ppdcache
#

[[ -f /var/lp/ppd/ppdcache ]] || exit 1
/bin/cat /var/lp/ppd/ppdcache |
    nawk '{FS=":"; print $1}' |
    nawk '{print $1}' |
    /bin/sort -u
exit 0
