#!/bin/sh

if [ -f /bin/sun ] && /bin/sun ; then
    true
else
    false
fi
