1 #! /usr/bin/bash 2 rm -r html 3 lilypond --pdf $1.ly 4 lilypond -dbackend=svg $1.ly 5 mkdir html 6 mv $1.pdf html/$1-2010.pdf 7 mv *.svg html/ 8 mv *.midi html/ 9 cp refer/*.html html/ 10 mkdir texi-out 11 cp title-eps/*.eps texi-out/ 12 lilypond-book --output=texi-out $1-sheet.texi 13 cd texi-out 14 tex $1-sheet.texi 15 dvips -t letter -P pdf $1-sheet.dvi 16 ps2pdf $1-sheet.ps $1-sheet-2010.pdf 17 cp *.pdf ../html/ 18 cd ../html 19 explorer.exe ave-maria-2010.html 20 cd ../ 21 rm -r texi-out 22 ls -la 23