Help for this page

Select Code to Download


  1. or download this
    $ENV{PATH}     = "/bin:/usr/bin:/some/weird/bin";
    $ENV{SOME_VAR} = "some value";
    
    $output = `some_command that I want output for`;
    system("some_command with output to STDOUT");
    
  2. or download this
    system("/absolute/path/to/some_command", "argument1", "2", $etc);