The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

FindBin - Locate directory of original perl script

SYNOPSIS

    use FindBin;
    use lib "$FindBin::Bin/../lib";

DESCRIPTION

Perl 6 port of the FindBin library.

    $Bin         - path to bin directory from where script was invoked
    $Script      - basename of script from which perl was invoked
    $RealBin     - $Bin with all links resolved
    $RealScript  - $Script with all links resolved

AUTHOR

Sebastian Riedel <sri@oook.de>

Based upon FindBin by Graham Barr and Nick Ing-Simmons

LICENSE

This library is free software . You can redistribute it and/or modify it under the same terms as perl itself.