#!/bin/sh

APP=/usr/lib/openoffice/program/swriter

if [ $# -eq 2 ] ; then
  $APP "$2" &
else
  $APP &
fi
