Help for this page

Select Code to Download


  1. or download this
    sub ReadFile {
        unless (open(INFILE,"< $_[0]")) {return 0;}
        my $readin = join //, map {chomp;$_} <INFILE>;
        close(INFILE);
        $readin;
    }