How do I include a Perl module that\'s in a different directory? It needs to be a relative path from the module that\'s including it.
I\'ve tried
p
I'm surprised nobody has mentioned it before, but FindBin::libs will always find your libs as it searches in all reasonable places relative to the location of your script.
#!/usr/bin/perl use FindBin::libs; use ;