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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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

8.99. File::DosGlob


Provides a portable enhanced DOS-like
globbing for the standard Perl distribution. DosGlob lets you use
wildcards in directory paths, is case-insensitive, and accepts both
backslashes and forward slashes (although you may have to double the
backslashes). Can be run three ways:


  • From a Perl script:

    require 5.004
    use File::DosGlob 'glob';
    @perlfiles = glob "..\pe?l/*.p?";
    print <..\pe?l/*.p?>;



  • With the perl command, on the command line:

    # From the command line (overrides only in main::)
    % perl -MFile::DosGlob=glob -e "print <../pe*/*p?>"



  • With the perlglob.bat program on the DOS command
    line:

    % perlglob ../pe*/*p?


When invoked as a program from the command line, File::DosGlob prints
null-separated filenames to STDOUT.


/ 875