Hi All,
New to Perl.. I have a script which is doing the following
system "/usr/java/jdk-1.7.0_4-x86_64/bin/java -jar 'ProgramName";
This then produces a number of line's of output, then sits at the console screen waiting for a Ctrl+C to exit the command..
How can I suppress the message, I was looking at 'nohup' and two.. How do I get out of the Ctrl+C so that the script can continue... Or is there a better way than using 'system'
Thanks.