On Tue, 2004-05-18 at 19:14, Rene Engelhard wrote: > The trick is to remove the -writer etc. from the command line when > a file is specified. [...]
> Now to get it ported to the Debian wrapper... :) I had ignored that change by Michael because we already do this: if [ $# = 0 ]; then case `basename $0` in [...] oowriter${VER}) set -- -writer;; [...] esac fi We only add '-writer' if there are no arguments passed on the command line. Chris