#!/bin/sh
case `uname` in
NeXTSTEP)
    /usr/ucb/w | head -1
    ;;
Linux)
    /usr/bin/uptime
    ;;
*)
    echo Please edit the $0 script.
    ;;
esac


