1blib(3pm) Perl Programmers Reference Guide blib(3pm)
2
3
4
6 blib - Use MakeMaker's uninstalled version of a package
7
9 perl -Mblib script [args...]
10
11 perl -Mblib=dir script [args...]
12
14 Looks for MakeMaker-like 'blib' directory structure starting in dir (or
15 current directory) and working back up to five levels of '..'.
16
17 Intended for use on command line with -M option as a way of testing
18 arbitrary scripts against an uninstalled version of a package.
19
20 However it is possible to :
21
22 use blib;
23 or
24 use blib '..';
25
26 etc. if you really must.
27
29 Pollutes global name space for development only task.
30
32 Nick Ing-Simmons nik@tiuk.ti.com
33
34
35
36perl v5.34.0 2021-10-18 blib(3pm)