14 lines
160 B
Bash
Executable file
14 lines
160 B
Bash
Executable file
#!/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
|
|
|
|
|