Help for this page

Select Code to Download


  1. or download this
      while (<APPLIST>) {
            push @inpfile, [split /\n/];
      }
    
  2. or download this
      local $/;
      open SLURP, $ifile or die "can't open $ifile: $!";
      @filedata = <SLURP>;
      close SLURP or die "cannot close $ifile: $!";