#!/bin/sh
# @(#)osname	1.3 of 10/11/93
#
# print Operating System name
#
# SVR3, SVR4, SunOS, AIX, IRIX, ULTRIX, Linux
#  

OS=`uname -s`

if [ `uname -m` = i386 ] 
then
  if [ ${OS} != "Linux" ]
  then
    if [ `uname -r` = 4.0 ]
    then
      OS=SVR4
    else
      OS=SVR3
    fi
  fi
fi

echo $OS
