Help for this page

Select Code to Download


  1. or download this
    open(OUTPUT, "$script | grep EXPRESSION |");
    my @output = <OUTPUT>;
    
  2. or download this
    open(OUTPUT, "$script |");
    my @output = <OUTPUT>;
    @output = grep { EPRESSION } @output;