I have a Jar file that I would like to run through screen, although when I try to open the Perl script everything seems to be working fine, although when I do top I do not see the process in the list, it works just fine if I copy-paste the command into the SSH session...
This is the code I'm using:
start.pl
# !/usr/local/bin/perl
system("cd /var/server/; screen java -Xmx1024M -Xms1024M -jar jarfile.jar > /dev/null 2>&1 &");
Can someone point out why this is?