Help for this page

Select Code to Download


  1. or download this
    print "What is the name of the access rights .csv? (Full file name)\n"
    +;
    my $file = <>;
    
  2. or download this
    print "What is the name of the access rights .csv? (Full file name)\n"
    +;
    chomp( my $file = <STDIN> );
    
  3. or download this
    print "Is there a header in this file?\n";
    my $header = <>;
    ...
    }
    else {$header = "undef";
    }
    
  4. or download this
    open (CSV, "<", $file);
    
  5. or download this
    open CSV, '<', $file or die "Cannot open '$file' because: $!";