Help for this page

Select Code to Download


  1. or download this
    my $output = `test.bat`;
    
  2. or download this
    my $output = qx( test.bat );
    
  3. or download this
    use Capture::Tiny qw( capture );
    
    ...
    {
        system 'test.bat';
    };