Help for this page

Select Code to Download


  1. or download this
    die "Usage: mytest filename [filename [...]]\n" unless @ARGV;
    print while <>;
    
  2. or download this
    die "Usage: mytest filename [filename [...]]\n" unless @ARGV;
    
    ...
      open my $ifh, '<', $file or die $!;
      print "$file($.): $_" while <$ifh>;
    }