Help for this page

Select Code to Download


  1. or download this
    unless (open (USERNAME, "username")) 
       {
         print "ERROR:Cannot open username file.\n";
         exit(1); # ERROR
        }
    
  2. or download this
    my $filename = 'foo';
    open my $filehandle, '<', $filename or die "opening '$filename': $!";