Help for this page

Select Code to Download


  1. or download this
    my $process = join (" ",$execution_path, $options);
    system ($process);
    
  2. or download this
    my $execution_path = "cmd.exe";
    my $options = "/K C:\\Perl\\Perl.exe myscript.pl";
    
    my $process = join (" ",$execution_path, $options);
    system ($process);