Help for this page

Select Code to Download


  1. or download this
    open INPUT from some_script;
    read input
      if some_condition
          open >&INPUT from some_other_script
      do_something
    
  2. or download this
    open INPUT, "some_script |";
    open OUTPUT, "| some_other_other_script ";
    ...
      }
      print OUTPUT $_;
    }