in reply to Installed Module Dependencies?

Hello,

I didn't comb though your requirements, so this might be simple enough for you, but then again might not be.

I've used the following when I need a list of modules that are loaded in to my application:

perl -Ilib -MMyApp -e 'print map "$_\n", sort keys %INC'

trwww