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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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

8.96. File::CheckTree


Runs file tests on a set of files.
Exports one function, validate, which takes a
single multiline string as input. Each line of the string contains a
filename plus a test to run on the file. The test can be followed
with || die to make it a fatal error if it fails.
The default is || warn. Prepending
! to the test reverses the sense of the test. You
can group tests (e.g., -rwx); only the first
failed test of the group produces a warning. For example:

use File::CheckTree;
$warnings += validate( q{
/vmunix -e || die
/bin cd
csh !-ug
sh -ex
/usr -d || warn "What happened to $file?\n"
});

Available tests include all the standard Perl file-test operators
except -t, -M,
-A, and -C. Unless it dies,
validate returns the number of warnings issued.


/ 875