#!/bin/bash
. findwine
if [ -e "$HOME/.wine/c/Program Files/MSOffice/Office/Binder.exe" ]; then
  $WINE "c:\\program files\\msoffice\\office\\binder.exe" ${PARAM:+"$PARAM"} &>/dev/null &
elif [ -e "$HOME/.wine/c/MSOffice/Office/Binder.exe" ]; then
  $WINE "c:\\msoffice\\office\\binder.exe" ${PARAM:+"$PARAM"} &>/dev/null &
fi
wait $!
