Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: hash keys from another file

by moritz (Cardinal)
on Mar 23, 2013 at 12:33 UTC ( [id://1025031]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my @dev;
     while(<DEV>){
     chomp;
     @dev = <DEV>;
    }
    
  2. or download this
    while (<DEV>) {
       chomp;
       push @dev, $_;
    }
    
  3. or download this
    my @dev = <DEV>;
    chomp @dev;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (8)
As of 2024-04-19 08:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found