#!/usr/bin/perl

print "java";
foreach $i (keys %ENV)
{
    print " -D$i='$ENV{$i}'";
}
foreach $i (@ARGV)
{
    print " $i";
}
print "\n";
