Help for this page

Select Code to Download


  1. or download this
    my $file = "/path-to/somefile";
    open(FIL, $file) || die "Couldn't open $file - $!\n";
    ...
       #do stuff with each line of $file
    }
    close(FIL);