#!/bin/sh

cmd="$1"; shift
( [ x"$cmd" = x"--help" ] || [ x"$cmd" = x ] ) && exec cg-help

exe="cg-$cmd"
exec $exe "$@"
