Help for this page

Select Code to Download


  1. or download this
    use IPC::System::Simple qw(capture capturex system systemx run runx $E
    +XITVAL EXIT_ANY);
    
    # This fails.
    system('dir', 'test.pl');
    
  2. or download this
    use autodie 'system';
    
    ...
    
    # This fails.
    system('dir', 'test.pl');