Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^3: dynamically generated array variable

by ikegami (Patriarch)
on Jan 02, 2007 at 21:11 UTC ( #592645=note: print w/replies, xml ) Need Help??


in reply to Re^2: dynamically generated array variable
in thread dynamically generated array variable

Yes. I already provided that. use strict does not give an error with the code in my previous post.

use strict; use warnings; # ... Load config file ... my $hostname = 'hosta'; my @host = do { no strict 'refs'; @$hostname }; foreach my $cnf (@host) { ... }

By the way, why are you using qw(...) to initialize a scalar. Don't you want
$host = q(...);
or the equivalent but more readable
$host = '...';

Log In?
Username:
Password:

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

How do I use this? | Other CB clients
Other Users?
Others avoiding work at the Monastery: (7)
As of 2023-05-29 15:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?