#! /bin/sh

start() {
	demo &
}

case "$1" in
	start)
	start
	;;
	*)
	echo "Usage: $0 {start}"
	exit 1
esac

exit $?
