Help for this page

Select Code to Download


  1. or download this
    open(FILE,"+<tabs.txt") or die "Couldn't open tabs.txt: $!";
    my @file = <FILE>; 
    ...
         print FILE $_;
    }
    close(FILE);
    
  2. or download this
    open(FILE,"+<tabs.txt") or die "Couldn't open tabs.txt: $!";
    my @file = <FILE>; 
    ...
         print FILE "$line\n";
    } 
    close(FILE);