- or download this
if ($addmodule =~ /yes/i) {
print "\nThis script does NOT add a ';' for you!\nSay 'done' w
+hen you done..\nModules: ";
...
print "I assume no.\n";
_makeperl();
}
- or download this
if ($addmodule =~ /yes/i) {
my @modules;
...
print "I assume no.\n";
_makeperl();
}
- or download this
sub _makeperl {
open (NEWSCRIPT, '>', $name);
...
print NEWSCRIPT "use $mods";
}
}
- or download this
sub _makeperl {
my @mods = @_
...
print NEWSCRIPT "use $mod";
}
}