How do I find out the name of a file that was require'd, from within that file? I can look into %INC to find the names of all files that were loaded, but I am looking for something like $0 that would serve as the key into %INC.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
a simple
should do .. also look here (does-a-perl-module-know-where-it-is-installed) and here ( perldoc on Special-Literals ) for more ideas |
|||||||||||||||||||
|
use lib "/my/conf/dir"and avoid the chicanery? – Greg Bacon Jan 7 '10 at 14:55use librelative to the executable.$0points to the psgi server, twiggy in my case. – Dallaylaen Aug 14 '12 at 9:03