process = Runtime.getRuntime().exec("perl test.perl");
####
String [] perlCommand = {"perl","test.perl","1","2","3"};
process = Runtime.getRuntime().exec(perlCommand);
####
#!/usr/local/bin/perl
use strict;
use warnings;
use Data::Dumper;
print Dumper @ARGV;