Help for this page

Select Code to Download


  1. or download this
        $Call[0] = "gawk";
        $Call[1] = "-f";
    ...
        $Call[3] = "test.file";
        $Call[4] = ">";
        $Call[5] = "out.file";
    
  2. or download this
        @Call = ( "gawk",
                  "-f",
    ...
                  "test.file",
                  ">",
                  "out.file" );