#!/bin/sh

if test `arch` = SGI
then
  echo $1 | tr "[a-z]-" "[A-Z] "
else
  echo $1 | tr "a-z-" "A-Z "
fi
