#!/bin/sh

cmd=`dirname "$0"`/soffice

if [ "$1" = "" ]
then
	exec "$cmd" private:factory/sdraw
else
	exec "$cmd" "$@"
fi
