Help for this page

Select Code to Download


  1. or download this
    while (<IN_FILE>) {
      s/^\ +//;
    ...
      s/\ *-\t-\ */-/g;
      s/\ +$//;
    }
    
  2. or download this
    my @PROC_INDEXES = map $_ - 1, @PROC_FIELDS;
    while (<IN_FILE>) {
    ...
    }
    close IN_FILE;
    close OUT_FILE;