This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: passing parameters with spaces to saxon


Warren Hedley wrote:
>
> # this doesn't work (same as using $* or $@)
> exec java "com.icl.saxon.StyleSheet" $args
> 
> # this passes the entire $args string as a single argument
> exec java "com.icl.saxon.StyleSheet" "$args"

It was only a matter of time before I found the permutation
that worked. The following does the trick.

exec java "com.icl.saxon.StyleSheet" "$@"

-- 
Warren Hedley


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]