sub load_config { my $self = shift; open(my $fh, $self->{config_file}) or croak "open error".$self->{config}; %{$self->{info}} = map { chomp; split'='; } <$fh>; close($fh); return $self; }