Help for this page

Select Code to Download


  1. or download this
    OPEN PIPE, "|java -jar program.jar";
        open FH, /abc.txt
        while (my $res = <FH>)
        print PIPE "$res";
        close FH;
    close PIPE;