Thread Hash-Inhalt auf Festplatte speichern (26 answers)
Opened by der_thomas at 2013-09-21 17:43

GwenDragon
 2013-09-26 10:04
#170657 #170657
User since
2005-01-17
14741 articles
Admin1
[Homepage]
user image
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);

View full thread Hash-Inhalt auf Festplatte speichern