if you want a little more feedback from the start process you could do:
Code:
#!/bin/sh
PW_PATH=/home
if [ ! -d $PW_PATH/logs ]; then
mkdir $PW_PATH/logs
fi
echo "::: is62 = Ordination --> Start ::"
cd $PW_PATH/gamed; ./gs is62 >$PW_PATH/logs/is62.log &
sleep 20 #changed to 20, 60 is a huge wait..
if ps -ef | grep './gs is62'\$ #if is62 is online...
then
echo "::: is62 = Origination --> Ready :::"
echo ""
else
echo "::: is62 = Origination --> Offline :::"
echo ""
fi
just a simple check but works well if you mainly use shell.