in reply to FindBin doens't work
I tend to add the use Data::Dumper; in the same line as the debug print when adding short-time prints which get deleted once the problem is solved. This is no good syntax, but saves you from forgetting to remove the use once you don't longer need it.use Data::Dumper; print STDERR '@INC: '.Dumper(\@INC)."\n\%INC: ".Dumper(\%INC)."\n";
|
|---|