File: //usr/local/MegaRAID Storage Manager/startmonitorhelp.sh
. /etc/init.d/msm_profile
if [ "0$1" = "0" ]; then
path=docs/MegaMonitor
else
path=$1
fi
CHECK=`which mozilla`
if [ "${CHECK}" = "" ]; then
echo "mozilla not present"
else
mozilla "file:///$MSM_HOME/$path/msm_monitor.htm"
exit
fi
CHECK=`which firefox`
if [ "${CHECK}" = "" ]; then
echo "firefox not present"
else
firefox "$(echo file:///$MSM_HOME/$path/msm_monitor.htm|sed 's/ /%20/g')"
exit
fi
echo "Support Browser are not installed on this system. Please install mozilla/firefox to launch help"