File indexing completed on 2024-04-06 11:57:57
0001
0002 link=$1
0003 first=$2
0004 last=$3
0005 arg1=''
0006 arg2=''
0007
0008 source $1/musecal/setup $1
0009
0010
0011 if [ -z $first ]; then
0012 echo
0013 else
0014 arg1="-f $first"
0015 fi
0016 if [ -z $last ]; then
0017 echo
0018 else
0019 arg2="-l $last"
0020 fi
0021 psdir="`whoami`_`date +%d%m%y%H%M`"
0022 mkdir $psdir
0023 export MEPSDIR=${PWD}/$psdir;
0024 echo 'postscript files will be written in ' $MEPSDIR
0025 runGUI -d $arg1 $arg2
0026 ls $MEPSDIR
0027