in reply to perl modules

Of you can try this script I wrote - findINC. Given a module name or fragment of a module name, it will recurse the @INC and find if it is installed.
Rich36
There's more than one way to screw it up...

Replies are listed 'Best First'.
Re: Re: perl modules
by John M. Dlugosz (Monsignor) on Nov 14, 2001 at 21:12 UTC
    Why not just do perl -MModuleName?

    If that works, the module is installed and in the normal @INC locations. To conditionally do things based on whether or module is available within a real script, just put an eval block around require.