#!/bin/bash
. findwine
if [ -e "$HOME/.wine/c/Program Files/Microsoft Office/Office/EXCEL.EXE" ]; then
  $WINE "c:\\program files\\microsoft office\\office\\excel.exe" ${PARAM:+"$PARAM"} &>/dev/null &
  wait $!
else
  excelview97 $@
fi
