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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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

8.49. Cwd


The Cwd module
provides three functions that get the pathname of the current working
directory. Using these functions instead of the
pwd command will make your code more portable,
because not all systems have pwd.


cwd

Gets the current working directory. This is the safest way to get it.


fastcwd

A faster way to get the directory, but somewhat more dangerous
because of the way it works internally.


getcwd

Does the same thing as cwd by reimplementing the C
library functions getcwd(3) or
getwd(3) in Perl.

/ 875