in reply to Which modules does somescript.pl use?
I ran this against: the following, and was able to see the used modules in the Devel::Cover output.mkdir /tmp/myscript_cover perl -MDevel::Cover=-db,/tmp/myscript_cover,-select,. /tmp/myscript.pl
use strict; use File::Path; mkpath '/tmp/asdasd'; use Image::Magick; my $IMG_BLANK = Image::Magick->new();
|
|---|