#!/bin/sh

CGEXESHELL=/bin/bash
export CGEXESHELL 

if [ $# -eq 0 ]
then
    ../../src/cego --mode=daemon --forceload --numdbthread=30 --dbxml=./db/chkdb.xml --poolsize=100  --protocol=serial
else
    ../../src/cego --mode=daemon --forceload --numdbthread=30 --dbxml=./db/chkdb.xml --poolsize=100 --tableset=$1 --protocol=serial
fi



