Java processing. Set your CLASSPATH environmet variable.
.:/usr/local/share/saxon/saxon.jar
Command line: java com.icl.saxon.StyleSheet Presentation.xml Presentation.xsl
I recommend the make utility
Example 1. Sample Makefile
-----------------------------------------------------------------------
index.html : Presentation.xml Presentation.xsl
java com.icl.saxon.StyleSheet Presentation.xml Presentation.xsl
clean:
rm -f *.html *~
-----------------------------------------------------------------------