#!/bin/sh

cmd=`dirname "$0"`/soffice

if [ "$1" = "" ]
then
	exec "$cmd" slot:10427
else
	exec "$cmd" "$@"
fi
