#!/bin/sh 

command=regsvr32

if [ "$1" = "-con" ] ; then
	command="regsvr32 -c"
	shift
fi

$command $*
