in reply to Re^4: Symbolic references
in thread Symbolic references
Thanks!foreach $argnum (0..$#ARGV){ $node=$ret; print "$ARGV[$argnum]\n"; @path=split /\//,$ARGV[$argnum]; print Dumper @path; #debugging helps! $node=$node->{$_} for @path; print $node; } print "\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Symbolic references
by LanX (Saint) on Apr 15, 2013 at 13:16 UTC |