#!/bin/sh

while true; do
	sbircpid=$( ps U $USER | grep "fullbot" | grep -v "grep" | awk '{ print $1 }' )
	if [ -z != $sbircpid ]; then
		echo "shoutboxIRC was already started."
		exit
	fi
	if [ -z $sbircpid ]; then
		php fullbot.php
		sbircpid=$( ps U $USER | grep "fullbot" | grep -v "grep" | awk '{ print $1 }' )
		sleep 2
		wait $sbircpid
	fi
done
