Are you a Sys Admin? Do you hate perl? Well, For those of you out there who might not be perl hackers, and for perl hackers who have multiple perl installs, and for people who use CPAN.pm in general, this script is for you.

Usage comments in script. Invaluable for fixing module and path conflicts with multiple (or borked) perl installs.

# incdebug.pl # usage: # /path/to/perl/to/debug/perl incdebug.pl # example: # /usr/local/bin/perl incdebug.pl # /home/joebob/bin/perl incdebug.pl local $"=$/; print "@INC";

Replies are listed 'Best First'.
Re: Portable @INC printing for Sysadmins
by merlyn (Sage) on May 23, 2001 at 20:16 UTC
      #!perl -V:-))
      this posting's a mystery to me! I'd just prefer: print join("\n",@INC); .. isn't $/ set to "\n" by default anyway?