Lines Matching refs:FindBin
0 # FindBin.pm
9 FindBin - Locate directory of original perl script
13 use FindBin;
14 use lib "$FindBin::Bin/../lib";
18 use FindBin qw($Bin);
32 C<STDIN> then FindBin sets both C<$Bin> and C<$RealBin> to the current
44 If there are two modules using C<FindBin> from different directories
45 under the same interpreter, this won't work. Since C<FindBin> uses a
49 that you should avoid using C<FindBin> in modules that you plan to put
50 on CPAN. To make sure that C<FindBin> will work is to call the C<again>
53 use FindBin;
54 FindBin::again(); # or FindBin->again;
56 In former versions of FindBin there was no C<again> function. The
59 delete $INC{'FindBin.pm'};
60 require FindBin;
69 exists in the users C<$ENV{PATH}> which satisfies both B<-x> and B<-T> then FindBin
78 FindBin is supported as part of the core perl distribution. Please send bug
92 package FindBin;