Subject: | save() method is deprecated |
I am running perl v5.6.1 built for i386-linux - RedHat 7.3. When trying to use SaveConfig, I get
The save() method is deprecated. Use the new save_file() method instead! at ./bill.new line 12
and no file is saved. My entire test program follows:
#!/usr/bin/perl
use Config::General;
use Data::Dumper;
use warnings;
use strict;
my %config = ParseConfig("bill.conf");
print Dumper(\%config);
SaveConfig("rcfile", \%config);
--Yan