require accutil;
i need to rename the accutil.pm module accutil2.pm, i assume i change the above line to:
require accutil2;
However, withing my script, i also have:
my $cfgfile = accutil::cfgfile();
does this mean i will have to change this to:
my $cfgfile = accutil2::cfgfile();
?
and also in alot of other places in the script, i also have similar lines as above, so will i need to change them all to accutil2? or is it ok just to do the one at the top?
Any comments would be much appreciated.
Cheers
Linda