Help for this page

Select Code to Download


  1. or download this
    open my $fh, "<", "Google_1.txt";
    print $_ while <$fh>;
    
  2. or download this
    open my $fh, "<", "Google_1.txt";
    my @file_array = <$fh>;
    chomp @file_array;