Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use Process;
    ...
    print STDERR "Started ..!\n";
    Process::createProcess('./printApplication');
    print STDERR ".. Finished!\n";
    
  2. 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;
    
  3. or download this
    package Process;
    use strict;
    ...
          }
        waitpid($pid, 0);
    }