#!/bin/sh

if [ -d /sys/c ]
then
  echo ${USER:-amiga}
elif [ -f vmunix ]
then
  whoami
elif [ "$USER" ]
then
  echo $USER
else
  echo someuser
fi
