#!/bin/sh

#
# edit file
#
MSCORE=../build.debug/mscore/mscore
echo $MSCORE $1
if test -f $1.mscz; then
      $MSCORE $1.mscz;
else
      $MSCORE $1.mscx;
fi


