Help for this page

Select Code to Download


  1. or download this
    #! perl -slw
    use strict;
    ...
    push @threads, async{ system '\path\to\second.exe' };
    
    $_->join for @threads;
    
  2. or download this
    system 1, '\path\to\your.exe';