Help for this page

Select Code to Download


  1. or download this
    foreach my $line (<FILE>) {
      # etc
    }
    my @lines = sort <FILE>;
    print <FILE>;
    
  2. or download this
    open(FILE, "< $file") or die "Cannot read $file: $!";
    
  3. or download this
    open(FILE, "cat $file |") or die "Cannot read $file: $!";