Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    my $file;
    ...
    }
    shift if !@ARGV;
    exec ("java", $file, @ARGV);
    
  2. or download this
    #!/usr/bin/perl
    my $file;
    ...
    die "Compiling error, could not run!\n" if ($error);
    shift if !@ARGV;
    exec ("java", $file, @ARGV);