Re: passing parameters with spaces to saxon

Subject: Re: passing parameters with spaces to saxon
From: Warren Hedley <w.hedley@xxxxxxxxxxxxxx>
Date: Sat, 25 Mar 2000 16:13:34 +1200
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


Current Thread