#!/usr/bin/env bash
#
# Copyright 2008, Centova Technologies Inc.
#
# This script is used to control Centova Cast and its streams from the
# commandline.  Run with no parameters for help.
#

RUNASCC=`dirname $0`/../system/runascc/runascc
if [ $# -lt 2 ]; then
	$RUNASCC exec ccmanage
	exit 1
fi

$RUNASCC exec ccmanage $*
exit #?
