I am able to use the following successfully in a Perl script;
system `sabcmd temp.xsl temp.xml`
 
I would like to pass a variable instead as the data file, i.e. $out.
Tried the following:
system `sabcmd temp.xsl $out` nothing happens
system `sabcmd temp.xsl "$out"` Parsing 'file://stdin'... waits forever
system `sabcmd temp.xsl '$out'` crashes, memory access violation. dump shows beginning of data from variable
 
Using Windows binary on Win98
 
any suggestions as to what I'm doing wrong?

Reply via email to