DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17111>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17111

issues a warning about '-in z' when '-param x y' added

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID



------- Additional Comments From [EMAIL PROTECTED]  2003-02-16 23:12 -------
This doesn't appear to be a bug.

The `du -k xces_$n` command you're running returns more than one space-
delimited word. When passing a multi-word parameter on the command line, you'll 
need to escape it with "'s:

java org.apache.xalan.xslt.Process -param bytes "`du -k xces_$n`" -param 
date_cre `date --iso-8601` -in $n -xsl rzp_header.xsl -out xces_header_$n 2>> 
${n}_log

Or if you're only interested in the first word, `du -k xces_$n | cut -f1` will 
get it for you, and supress the warning.

Reply via email to