- or download this
#!/usr/bin/perl
use Process;
...
print STDERR "Started ..!\n";
Process::createProcess('./printApplication');
print STDERR ".. Finished!\n";
- or download this
#!/usr/bin/perl
print STDERR " printing some text\n";
...
print STDERR " printing some text\n";
print STDERR " printing some text\n";
sleep 10;
- or download this
package Process;
use strict;
...
}
waitpid($pid, 0);
}