Here is my question:
I would like to start three different perl scripts from one script without waiting for exit status of a previous one.
(I want script: script1.pl script2.pl and script3.pl run the whole day)
how do I accomplish that?
This is what i had in mind:
print "starting first script";
system(script1.pl);
print "starting second script";
system(script1.pl);
print "starting third script";
system(script3.pl);
I would like to start three different perl scripts from one script without waiting for exit status of a previous one.
(I want script: script1.pl script2.pl and script3.pl run the whole day)
how do I accomplish that?
This is what i had in mind:
print "starting first script";
system(script1.pl);
print "starting second script";
system(script1.pl);
print "starting third script";
system(script3.pl);