1 #! /usr/bin/bash
 2 # ------ lilypond ver 2.24.0 --------------
 3 rm -r html
 4 cp Files-ly/*.* ./
 5 mkdir html
 6 cp refer/*.html html/
 7 lilypond -E avenue-wind-all.ly
 8 lilypond -E score-only-soprano-all.ly
 9 lilypond -E score-only-alto-all.ly
10 lilypond -E score-only-tenor-all.ly
11 lilypond -E score-only-bass-all.ly
12 # -----------------------------------------------------
13 lilypond --pdf avenue-wind.ly
14 lilypond --svg avenue-wind.ly
15 lilypond --svg score-only-soprano-all.ly
16 lilypond --svg score-only-alto-all.ly
17 lilypond --svg score-only-tenor-all.ly
18 lilypond --svg score-only-bass-all.ly
19 # -----------------------------------------------------
20 latex avenue-wind-sheet.latex
21 dvips -t letterpaper -P pdf avenue-wind-sheet.dvi
22 ps2pdf avenue-wind-sheet.ps
23 cp *.svg html/
24 cp *.pdf html/
25 cp *.midi html/
26 cd html
27 explorer.exe avenue-wind-sheet.html
28 cd ../
29 rm *.aux *.log *.dvi *.ps *.png *.pdf
30 rm *.midi *.eps *.svg *.ly *.latex
31 rm html/avenue-wind-all-?.pdf
32 ls -lX
33