#!/bin/bash
# $Id: get-host-type,v 1.2 2002/10/31 19:00:45 mrustad Exp $
# Get host type - returns cpu-os

cpu="`uname -m`"
if test "${cpu}" = "Power Macintosh" ; then
	cpu="`uname -p`"
fi

os="`uname -s | tr \[A-Z] \[a-z]`"
echo ${cpu}-${os}
exit 0
