in reply to vmod
(Note: much of the documentation for File::Spec is actually, and unfortunately, in the File::Spec::Unix module. I haven't found that documentation on this site, so you'll have to read it on your local system.)use File::Spec; my @module = split /::|-/, $module; $module = File::Spec->catfile(@module);
|
---|