Help for this page

Select Code to Download


  1. or download this
    my $line = <$fh>;  # Filehandle?
    my $file = <*fs>;  # Glob?
    
  2. or download this
    my $line   = $fh->readline();  # Filehandle!
    my ($file) = glob("*fs");        # Glob!