Help for this page

Select Code to Download


  1. or download this
    for my $fname (@ARGV) {
        open(IN, $fname);
        print while <IN>;
        close IN;
    }
    
  2. or download this
    print while <>;