How can I run Perl system commands in the background?
Perl’s system function has two modes: taking a single string and passing it to the command shell to allow special characters to be processed taking a list of strings, exec’ing the first and passing the remaining strings as arguments In the first form you have to be careful to escape characters that might have a … Read more