Thread Hash-Inhalt auf Festplatte speichern
(26 answers)
Opened by der_thomas at 2013-09-21 17:43
Dafür gibts Terse, das lässt die Variable weg und du bekommst einen anonymen Hash.
Musst halt im eval die noch einbauen. Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 use Data::Dumper; $Data::Dumper::Terse = 1; open (my $fh,'>','config.dat') or die $!; print $fh Dumper(\%config); close($fh); open ($fh,'<','config.dat') or die $!; my $config_neu; { $/ = undef; my $s= <$fh>; eval '$config_neu='.$s; } die $@ if $@; print Dumper($config_neu); |