Help for this page

Select Code to Download


  1. or download this
    use IPC::System::Simple qw( capture capturex );
    
    my $foo = capture("shell command");
    my $foo = capturex("program");
    my $foo = capturex("program", @args);
    
  2. or download this
    use IPC::System::Simple qw( system systemx );
    
    system("shell command");
    systemx("program");
    systemx("program", @args);