Perl Cd Bookshelf [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Perl Cd Bookshelf [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید



8.115. FindBin


Finds the
full path to a script's bin
directory, letting you use relative paths to that directory without
needing to know the actual location:

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

or:

use FindBin qw($Bin);
use lib "$Bin/../lib";

FindBin exports the following variables:

$Bin
Path to bin directory from which script was
invoked

$Script
Basename of script from which Perl was invoked

$RealBin
$Bin with all links resolved

$RealScript
$Script with all links resolved

If you invoke Perl with the -e option or read
the Perl script from STDIN, then FindBin sets both
$Bin and $RealBin to the
current directory.



8.114. Filter::Util::Call8.116. GDBM_File




Copyright © 2002 O'Reilly & Associates. All rights reserved.

/ 875