>On Tue, 29 Jan 2008 
>Bilashi Sahu <[EMAIL PROTECTED]> wrote:
>I will appreciate any kind of hints that will help me
>to write automation in perl, (basically how java
>program will be invoked using Perl).
> 
You could use backticks to execute a system command like so:
my $command = "java -jar $pathLoc$jarName @ARGV"; 
my @system_out = `$command`;
HTH, Paula
 
_______________________________________________
ActivePerl mailing list
[email protected]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to