#!/bin/sh

cmd=`dirname "$0"`/soffice

if [ "$1" = "" ]
then
	exec "$cmd" private:factory/swriter?slot=21052
else
	exec "$cmd" "$@"
fi
