#!/bin/sh
cmd=`dirname "$0"`/soffice

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