Help for this page

Select Code to Download


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