|
These comments on the ox.sh shell script are from Claudia Nölker of xmelements.de (thank you, Claudia):
As far as I tested, it doesn't matter whether you put "$@" or just $* inside the script. The usage of "$*" will not work if you pass more than one argument to the script.
With *nix, you have to quote on the command line, because this input is parsed e.g. by bash before sent to the script.
ox.sh "document()" xsl:element
works fine, also
ox.sh document\(\) xsl:value-of xslt
This does not work:
ox.sh document()
|