Skip to content

Instantly share code, notes, and snippets.

@jney
Created October 19, 2009 10:39
Show Gist options
  • Save jney/213266 to your computer and use it in GitHub Desktop.
Save jney/213266 to your computer and use it in GitHub Desktop.
#! /bin/sh
# ex :
# xslt.sh -IN foo.xml -XSL foo.xsl -OUT foo.out
# => java -classpath $XALAN_PATH org.apache.xalan.xslt.Process -IN foo.xml -XSL foo.xsl -OUT foo.out
XALAN_PATH="$HOME/lib/xalan-j_2_7_1/"
java -classpath $XALAN_PATH org.apache.xalan.xslt.Process $*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment