Help for this page

Select Code to Download


  1. or download this
    system("/some/program >/dev/null");
    
  2. or download this
    my $output = `/some/program`;
    
  3. or download this
    open(my $handle, "/some/program|") or die;
    while (<$handle>) {
      # do stuff with a line
    }