Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Fix-it fix-it fix-it!

by jwkrahn (Abbot)
on Nov 15, 2012 at 04:52 UTC ( [id://1003929]=note: print w/replies, xml ) Need Help??

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: $!";
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1003929]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (3)
As of 2024-04-24 19:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found