Help for this page

Select Code to Download


  1. or download this
    while (<FILE1>)
            {    $hline=<FILE1>;
                    push (@hlines,$hline);
            }
    
  2. or download this
    @hlines = <FILE1>;
    
  3. or download this
    my $FILE1;
    
  4. or download this
    open (FILE1, "$f1") or die "Argh! File not opened! $!";
    
  5. or download this
    open (FILE1, "<", $f1) or die "Argh! File not opened! $!";
    
  6. or download this
    #!/root/bin/perl
    use strict;
    ...
    chomp $fn;
    return $fn;
    }