Help for this page

Select Code to Download


  1. or download this
    my @file_name;
    while (<FH>) {
        push (@file_name, $_);
    }
    
  2. or download this
    my @file_name = <FH>;