Manpages

NAME

perlfaq2 - 获 取 和 学 习 Perl (2003/10/16 04:57:38)

DESCRIPTION 描 述

从 哪 里 寻 找 Perl 的 源 程 序 和 文 档 , 支 持 以 及 相 关 事 项 哪 些 平 台 上 有 Perl? 要 到 哪 里 去 找 ?

Perl的 标 准 发 行 版 ( 由 perl发 展 小 组 负 责 维 护 ) 仅 以 原 始 码 形 式 发 行 。 您 可 在 http://www.perl.com/CPAN/src/latest.tar.gz处; 取 得 。 这 个 档 案 的 格 式 是 POSIX tar档 案 柜 , 再 以 gzip格 式 压 缩 。

Perl 可 以 在 难 以 记 数 的 平 台 上 运 行 。 几 乎 所 有 已 知 的 Unix 衍 生 版 本 都 被 支 持 (Perl 的 本 地 平 台 ), 还 有 其 他 操 作 系 统 平 台 , 类 似 VMS , DOS , OS/2 , Windows, QNX , BeOS, OS X, MPE/iX 和 Amiga. 为 专 有 平 台 准 备 的 二 进 制 发 行 版 , 包 括 Apple, 可 以 从 http://www.cpan.org/ports/ 找 到 。 因 为 它 们 不 是 标 准 发 行 的 一 部 分 , 它 们 可 能 ( 事 实 上 的 确 ) 和 基 本 的 Perl有 多 方 面 的 不 同 。 要 确 切 知 道 到 底 哪 些 地 方 不 同 , 您 得 自 行 查 阅 它 们 各 自 的 发 行 说 明 。 这 些 差 异 可 能 是 正 面 的 ( 譬 如 它 们 可 能 附 有 一 些 原 始 码 发 行 的 perl所 没 有 的 延 伸 , 提 供 专 属 某 一 平 台 的 特 殊 功 能 ) , 亦 或 负 面 的 ( 例 如 它 们 可 能 是 植 基 于 比 较 老 旧 的 Perl原 始 码 发 行 版 ) 。 要 如 何 取 得 以 二 进 制 形 式 发 行 的 Perl? 不 管 为 什 么 您 的 作 业 系 统 业 者 没 有 将 C编 译 器 附 在 所 卖 的 作 业 系 统 中 , 最 好 的 方 法 是 到 网 路 上 去 抓 一 份 gcc的 执 行 档 , 然 后 用 它 来 编 译 perl 。 CPAN 上 所 放 的 gcc执 行 档 仅 专 门 提 供 几 个 特 别 难 拿 到 免 费 编 译 器 的 平 台 , 而 不 是 给 任 何 Unix系 统 的 。 一 些 URLs 可 能 有 用 :

    http://www.cpan.org/ports/
    http://www.perl.com/pub/language/info/software.html

Someone looking for a Perl for Win16 might look to Laszlo Molnar’s djgpp port in http://www.cpan.org/ports/#msdos , which comes with clear installation instructions. A simple installation guide for MS-DOS using Ilya Zakharevich’s OS/2 port is available at http://www.cs.ruu.nl/%7Epiet/perl5dos.html and similarly for Windows 3.1 at http://www.cs.ruu.nl/%7Epiet/perlwin3.html . 我 的 系 统 里 没 有 C编 译 器 。 要 如 何 编 译 perl? 因 为 您 没 有 C 编 译 器 , 您 是 没 指 望 了 , 而 您 的 经 销 商 则 该 拿 去 当 作 祭 拜 Sun god 的 供 品 。 不 过 说 这 些 风 凉 话 无 济 于 事 。 您 首 先 需 要 做 的 是 替 您 的 系 统 找 一 个 gcc的 执 行 档 。 参 阅 和 您 的 作 业 系 统 相 关 的 各 Usenet FAQs, 看 到 哪 里 可 以 找 到 这 种 作 业 系 统 的 gcc执 行 档 。 我 直 接 将 Perl的 执 行 档 从 一 台 机 器 上 复 制 到 另 一 台 机 器 上 , 但 是 程 式 跑 不 起 来 。 那 大 概 是 您 忘 了 复 制 程 式 库 , 或 者 是 程 式 库 的 路 径 不 同 的 关 系 。 您 真 的 应 该 在 那 台 要 安 装 perl的 机 器 上 将 整 套 发 行 从 头 编 译 , 然 后 打 make install来 安 装 。 其 他 的 方 法 大 多 注 定 要 失 败 。 有 一 个 简 单 的 方 法 可 用 来 检 查 和 确 定 东 西 有 没 有 装 对 地 方 --把 编 入 perl的 @INC阵 列 ( perl用 它 来 寻 找 程 式 库 的 路 径 ) 印 出 :

% perl -le ’print for @INC’ 如 果 这 个 指 令 列 出 了 任 何 在 您 系 统 上 不 存 在 的 路 径 , 那 么 您 或 许 得 将 适 当 的 程 式 库 移 到 这 些 地 方 , 或 者 制 做 适 当 的 symlinks、 aliases 或 捷 径 。 @INC 也 作 为 命 令

% perl -V 的 输 出 。 你 也 许 会 想 看 看 "How do I keep my own module/library directory?" in perlfaq8. 我 抓 回 了 原 始 码 , 试 着 编 译 perl, 但 是 gdbm/dynamic loading/malloc/linking/...部 分 失 败 。 要 如 何 将 它 搞 定 ? 细 读 INSTALL这 个 档 案 , 这 是 原 始 码 发 行 版 里 面 的 一 个 档 案 。 有 时 候 自 动 设 定 程 式 (Configure) 对 某 些 较 不 寻 常 的 系 统 、 平 台 特 质 、 或 变 异 会 不 知 所 措 。 该 档 案 对 该 如 何 处 这 类 的 问 题 , 大 都 有 详 细 的 说 明 。

Perl有 哪 些 模 组 和 延 伸 ? CPAN是 什 么 ? CPAN/src/...又 代 表 什 么 ?

CPAN代 表 的 是 「 大 Perl档 案 库 网 络 」 (Comprehensive Perl Archive Network), 一 个 在 全 世 界 近 200台 机 器 之 间 相 互 映 射 的 巨 大 档 案 库 。 CPAN包 含 了 原 始 码 、 对 各 非 原 生 系 统 的 移 植 、 使 用 说 明 、 程 式 , 以 及 许 多 由 第 叁 类 团 体 所 写 的 模 组 和 延 伸 , 从 各 商 业 品 牌 的 资 料 库 介 面 、 到 键 盘 / 萤 幕 控 制 , 乃 至 全 球 资 讯 网 漫 游 及 CGI程 式 皆 一 应 具 全 。 CPAN的 总 主 机 是 http://www.cpan.org/ , 但 您 也 可 以 透 过 这 个 位 址 : http://www.cpan.org/CPAN.html 来 自 动 连 接 一 个 在 地 理 位 置 上 最 接 近 您 的 站 。 至 于 这 个 设 计 的 运 作 原 理 , 请 看 http://www.perl.com/CPAN(; 最 后 头 没 有 斜 线 ) 的 说 明 。 同 时 , http://mirror.cpan.org/ 也 提 供 了 http://www.cpan.org/MIRRORED 的 方 便 的 界 面 参 见 CPAN FAQ 位 于 http://www.cpan.org/misc/cpan-faq.html 来 获 得 有 关 CPAN 的 FAQ, 包 括 如 何 成 为 一 个 镜 像 站

CPAN/path/... 是 CPAN站 台 上 头 的 档 案 的 命 名 规 范 。 CPAN 代 表 一 个 CPAN映 射 的 基 准 目 录 , 然 后 其 馀 的 路 径 是 由 该 目 录 到 一 个 档 案 的 路 径 。 例 如 , 如 果 您 使 用 ftp://ftp.funet.fi/pub/languages/perl/CPAN 来 做 您 的 CPAN 站 , 那 么 CPAN/misc/japh这 个 档 案 便 可 以 从 ftp://ftp.funet.fi/pub/languages/perl/CPAN/misc/japh 下 载 到 由 于 目 前 CPAN档 案 库 中 已 经 有 近 两 千 个 模 组 , 因 此 几 乎 任 何 您 所 能 想 到 的 用 途 , 大 概 都 已 经 有 现 成 的 模 组 可 以 办 到 。 目 前 在 CPAN/modules/by-category/ 底 下 的 类 别 包 括 了 perl核 心 模 组 、 协 助 发 展 模 组 、 作 业 系 统 介 面 、 网 路 、 周 边 设 备 、 不 同 processes间 之 沟 通 、 资 料 型 态 工 具 、 资 料 库 介 面 、 使 用 者 介 面 、 与 其 他 语 言 介 面 、 档 名 、 档 案 系 统 、 档 案 锁 定 、 软 体 国 际 化 及 地 方 化 、 全 球 资 讯 网 支 援 、 伺 服 软 体 工 具 、 档 案 库 和 档 案 压 缩 、 图 形 变 换 处 理 、 电 子 邮 件 及 新 闻 讨 论 群 、 程 式 流 程 控 制 工 具 、 filehandles和 输 入 / 输 出 、 微 软 视 窗 模 组 , 以 及 杂 项 模 组 等 。 参 见 http://www.cpan.org/modules/00modlist.long.htmlhttp://search.cpan.org/ 来 阅 读 分 类 的 模 块 完 整 列 表 。

CPAN 不 是 O’Reilly and Associates 的 附 属 品 . 是 不 是 有 一 个 经 ISO【 国 际 标 准 局 】 或 ANSI【 美 国 国 家 标 准 局 】 认 可 的 Perl版 本 ? 当 然 没 有 。 Larry认 为 他 得 先 被 认 可 后 然 后 才 会 轮 到 Perl 。

Perl的 相 关 资 料 要 上 哪 儿 找 ?

perl的 发 行 版 中 都 附 有 完 整 的 使 用 说 明 中 。 如 果 perl已 安 装 在 您 的 机 器 上 , 那 么 使 用 说 明 应 该 也 已 经 装 在 上 头 了 : 如 果 您 用 的 是 一 个 像 Unix的 系 统 , 您 可 以 打 man perl。 这 同 时 会 带 领 您 到 其 他 重 要 的 使 用 说 明 页 。 如 果 您 用 的 不 是 Unix 式 的 系 统 , 那 么 查 阅 使 用 说 明 的 方 法 会 有 所 不 同 ; 譬 如 说 , 使 用 说 明 可 能 会 以 HTML 格 式 来 存 放 。 不 管 怎 么 样 , 只 要 perl正 确 地 安 装 , 查 阅 使 用 说 明 应 该 不 成 问 题 。 如 果 您 的 系 统 没 有 man这 个 指 令 , 或 者 是 该 指 令 安 装 不 当 , 那 么 您 可 以 试 试 perldoc perl。 如 果 还 不 成 , 您 可 以 在 /usr/local/lib/perl5/pod这 个 目 录 下 找 使 用 说 明 。 如 果 以 上 的 方 法 全 失 败 , 那 么 您 可 求 助 于 http://perldoc.cpan.org/http://www.perldoc.com/ 都 提 供 了 完 整 的 html 格 式 的 帮 助 面 上 有 许 多 本 和 Perl有 关 的 好 书 , 详 情 请 见 下 面 一 节 的 介 绍 。

Tutorial documents are included in current or upcoming Perl releases include perltoot for objects or perlboot for a beginner’s approach to objects, perlopentut for file opening semantics, perlreftut for managing references, perlretut for regular expressions, perlthrtut for threads, perldebtut for debugging, and perlxstut for linking C and Perl together. There may be more by the time you read this. The following URLs might also be of assistance:

    http://perldoc.cpan.org/
    http://www.perldoc.com/
    http://bookmarks.cpan.org/search.cgi?cat=Training%2FTutorials

USENET上 有 哪 些 专 门 讨 论 Perl的 新 闻 讨 论 群 ? 问 题 该 投 到 哪 里 ?

Usenet 中 有 多 个 新 闻 组 与 Perl 语 言 相 关 :

    comp.lang.perl.announce             Moderated announcement group
    comp.lang.perl.misc                 High traffic general Perl discussion
    comp.lang.perl.moderated        Moderated discussion group
    comp.lang.perl.modules              Use and development of Perl modules
    comp.lang.perl.tk                   Using Tk (and X) from Perl

    comp.infosystems.www.authoring.cgi  Writing CGI scripts for the Web.

Some years ago, comp.lang.perl was divided into those groups, and comp.lang.perl itself officially removed. While that group may still be found on some news servers, it is unwise to use it, because postings there will not appear on news servers which honour the official list of group names. Use comp.lang.perl.misc for topics which do not have a more-appropriate specific group.

There is also a Usenet gateway to Perl mailing lists sponsored by perl.org at nntp://nntp.perl.org , a web interface to the same lists at http://nntp.perl.org/group/ and these lists are also available under the "perl.*" hierarchy at http://groups.google.com . Other groups are listed at http://lists.perl.org/ ( also known as http://lists.cpan.org/ ).

A nice place to ask questions is the PerlMonks site, http://www.perlmonks.org/ , or the Perl Beginners mailing list http://lists.perl.org/showlist.cgi?name=beginners .

Note that none of the above are supposed to write your code for you: asking questions about particular problems or general advice is fine, but asking someone to write your code for free is not very cool. 如 果 我 想 投 程 式 原 始 码 , 该 投 到 哪 个 板 子 上 ? 您 应 看 程 式 的 性 质 来 决 定 该 丢 到 哪 个 板 子 上 , 但 也 欢 迎 您 交 叉 投 递 一 份 到 comp.lang.perl.misc上 头 去 。 如 果 您 打 算 交 叉 投 递 到 alt.sources 的 话 , 请 务 必 遵 照 该 板 所 规 定 的 标 准 , 包 括 标 头 的 Followup-To 栏 不 可 将 alt.sources 列 入 ; 详 见 该 板 的 FAQ 。

If you’re just looking for software, first use Google ( http://www.google.com ), Google’s usenet search interface ( http://groups.google.com ), and CPAN Search ( http://search.cpan.org ). This is faster and more productive than just posting a request.

Perl 书 籍 市 面 上 有 许 多 有 关 Perl 和 / 或 CGI程 式 设 计 的 书 。 其 中 有 些 很 好 , 有 些 还 过 得 去 , 但 也 有 不 少 根 本 不 值 得 买 。 大 部 分 的 Perl书 都 列 在 Tom Christiansen 所 维 护 的 列 表 中 , 其 中 一 些 有 详 细 的 评 论 , 位 于 http://www.perl.com/perl/critiques/index.html . 毫 无 争 议 地 , 最 权 威 的 Perl参 考 书 要 数 以 下 这 本 , 由 Perl的 创 始 者 著 作 , 现 在 是 第 三 版 (July 2000):

    Programming Perl (the "Camel Book"):
        by Larry Wall, Tom Christiansen, and Jon Orwant
        0-596-00027-8  [3rd edition July 2000]
        http://www.oreilly.com/catalog/pperl3/
    (English, translations to several languages are also available)

The companion volume to the Camel containing thousands of real-world examples, mini-tutorials, and complete programs is:

    The Perl Cookbook (the "Ram Book"):
        by Tom Christiansen and Nathan Torkington,
            with Foreword by Larry Wall
        ISBN 1-56592-243-3 [1st Edition August 1998]
        http://perl.oreilly.com/catalog/cookbook/

If you’re already a seasoned programmer, then the Camel Book might suffice for you to learn Perl from. If you’re not, check out the Llama book:

    Learning Perl (the "Llama Book")
        by Randal L. Schwartz and Tom Phoenix
        ISBN 0-596-00132-0 [3rd edition July 2001]
        http://www.oreilly.com/catalog/lperl3/

And for more advanced information on writing larger programs, presented in the same style as the Llama book, continue your education with the Alpaca book:

    Learning Perl Objects, References, and Modules (the "Alpaca Book")
       by Randal L. Schwartz, with Tom Phoenix (foreword by Damian Conway)
       ISBN 0-596-00478-8 [1st edition June 2003]
       http://www.oreilly.com/catalog/lrnperlorm/

If you’re not an accidental programmer, but a more serious and possibly even degreed computer scientist who doesn’t need as much hand-holding as we try to provide in the Llama, please check out the delightful book

    Perl: The Programmer’s Companion
        by Nigel Chapman
        ISBN 0-471-97563-X [1997, 3rd printing Spring 1998]
        http://www.wiley.com/compbooks/catalog/97563-X.htm
        http://www.wiley.com/compbooks/chapman/perl/perltpc.html (errata etc)

If you are more at home in Windows the following is available (though unfortunately rather dated).

    Learning Perl on Win32 Systems (the "Gecko Book")
        by Randal L. Schwartz, Erik Olson, and Tom Christiansen,
            with foreword by Larry Wall
        ISBN 1-56592-324-3 [1st edition August 1997]
        http://www.oreilly.com/catalog/lperlwin/

Addison-Wesley ( http://www.awlonline.com/ ) and Manning ( http://www.manning.com/ ) are also publishers of some fine Perl books such as Object Oriented Programming with Perl by Damian Conway and Network Programming with Perl by Lincoln Stein.

An excellent technical book discounter is Bookpool at http://www.bookpool.com/ where a 30% discount or more is not unusual.

What follows is a list of the books that the FAQ authors found personally useful. Your mileage may (but, we hope, probably won’t) vary.

Recommended books on (or mostly on) Perl follow.
References

    Programming Perl
        by Larry Wall, Tom Christiansen, and Jon Orwant
        ISBN 0-596-00027-8 [3rd edition July 2000]
        http://www.oreilly.com/catalog/pperl3/
    Perl 5 Pocket Reference
    by Johan Vromans
        ISBN 0-596-00032-4 [3rd edition May 2000]
        http://www.oreilly.com/catalog/perlpr3/

    Perl in a Nutshell
    by Ellen Siever, Stephan Spainhour, and Nathan Patwardhan
        ISBN 1-56592-286-7 [1st edition December 1998]
        http://www.oreilly.com/catalog/perlnut/

Tutorials

    Elements of Programming with Perl
        by Andrew L. Johnson
        ISBN 1-884777-80-5 [1st edition October 1999]
        http://www.manning.com/Johnson/
    Learning Perl
        by Randal L. Schwartz and Tom Phoenix
        ISBN 0-596-00132-0 [3rd edition July 2001]
        http://www.oreilly.com/catalog/lperl3/
    Learning Perl Objects, References, and Modules
       by Randal L. Schwartz, with Tom Phoenix (foreword by Damian Conway)
       ISBN 0-596-00478-8 [1st edition June 2003]
       http://www.oreilly.com/catalog/lrnperlorm/
    Learning Perl on Win32 Systems
        by Randal L. Schwartz, Erik Olson, and Tom Christiansen,
            with foreword by Larry Wall
        ISBN 1-56592-324-3 [1st edition August 1997]
        http://www.oreilly.com/catalog/lperlwin/
    Perl: The Programmer’s Companion
        by Nigel Chapman
        ISBN 0-471-97563-X [1997, 3rd printing Spring 1998]
    http://www.wiley.com/compbooks/catalog/97563-X.htm
    http://www.wiley.com/compbooks/chapman/perl/perltpc.html (errata etc)
    Cross-Platform Perl
        by Eric Foster-Johnson
        ISBN 1-55851-483-X [2nd edition September 2000]
        http://www.pconline.com/~erc/perlbook.htm

    MacPerl: Power and Ease
        by Vicki Brown and Chris Nandor,
            with foreword by Matthias Neeracher
        ISBN 1-881957-32-2 [1st edition May 1998]
        http://www.macperl.com/ptf_book/

Task-Oriented

    The Perl Cookbook
        by Tom Christiansen and Nathan Torkington
            with foreword by Larry Wall
        ISBN 1-56592-243-3 [1st edition August 1998]
        http://www.oreilly.com/catalog/cookbook/

    Effective Perl Programming
        by Joseph Hall
        ISBN 0-201-41975-0 [1st edition 1998]
        http://www.awl.com/

Special Topics

    Mastering Regular Expressions
        by Jeffrey E. F. Friedl
        ISBN 0-596-00289-0 [2nd edition July 2002]
        http://www.oreilly.com/catalog/regex2/
    Network Programming with Perl
        by Lincoln Stein
        ISBN 0-201-61571-1 [1st edition 2001]
        http://www.awlonline.com/
    Object Oriented Perl
        Damian Conway
            with foreword by Randal L. Schwartz
        ISBN 1-884777-79-1 [1st edition August 1999]
        http://www.manning.com/Conway/
    Data Munging with Perl
        Dave Cross
        ISBN 1-930110-00-6 [1st edition 2001]
        http://www.manning.com/cross
    Mastering Perl/Tk
        by Steve Lidie and Nancy Walsh
        ISBN 1-56592-716-8 [1st edition January 2002]
        http://www.oreilly.com/catalog/mastperltk/

    Extending and Embedding Perl
       by Tim Jenness and Simon Cozens
       ISBN 1-930110-82-0 [1st edition August 2002]
       http://www.manning.com/jenness

Perl 有 关 的 杂 志

The first (and for a long time, only) periodical devoted to All Things Perl, The Perl Journal contains tutorials, demonstrations, case studies, announcements, contests, and much more. TPJ has columns on web development, databases, Win32 Perl, graphical programming, regular expressions, and networking, and sponsors the Obfuscated Perl Contest and the Perl Poetry Contests. Beginning in November 2002, TPJ moved to a reader-supported monthly e-zine format in which subscribers can download issues as PDF documents. For more details on TPJ , see http://www.tpj.com/

Beyond this, magazines that frequently carry quality articles on Perl are The Perl Review ( http://www.theperlreview.com ), Unix Review ( http://www.unixreview.com/ ), Linux Magazine ( http://www.linuxmagazine.com/ ), and Usenix’s newsletter/magazine to its members, login: ( http://www.usenix.org/ )

The Perl columns of Randal L. Schwartz are available on the web at http://www.stonehenge.com/merlyn/WebTechniques/ , http://www.stonehenge.com/merlyn/UnixReview/ , and http://www.stonehenge.com/merlyn/LinuxMag/ . 网 路 上 的 Perl: 接 触 FTP 和 WWW 如 果 您 想 达 到 最 好 ( 还 有 最 省 钱 ) 的 传 输 效 果 , 那 么 从 http://www.cpan.org/SITES.html 所 列 的 站 台 中 任 选 其 一 , 从 上 头 把 完 整 的 映 射 站 名 单 抓 下 来 。 然 后 您 可 以 从 中 挑 选 一 个 对 您 来 说 传 输 最 快 的 站 台 。 .PP 也 可 以 使 用 xx.cpan.org , 其 中 "xx" 是 双 字 符 的 国 家 代 码 , 例 如 澳 大 利 亚 可 以 使 用 au.cpan.org. [注 意 : 这 只 对 至 少 包 含 了 一 个 主 机 镜 像 的 国 家 有 效 。 ] 有 哪 些 讨 论 Perl 的 邮 件 列 表 ? 大 部 分 的 重 要 模 组 ( 如 Tk、 CGI 和 libwww-perl) 有 专 属 各 自 的 mailing lists。 有 关 资 料 请 参 考 这 些 模 组 的 使 用 说 明 。 完 整 的 与 Perl 有 关 的 邮 件 列 表 可 以 从 这 里 找 到 :

        http://lists.perl.org/

comp.lang.perl.misc 的 档 案 库

The Google search engine now carries archived and searchable newsgroup content.

http://groups.google.com/groups?group=comp.lang.perl.misc

If you have a question, you can be sure someone has already asked the same question at some point on c.l.p.m. It requires some time and patience to sift through all the content but often you will find the answer you seek. 如 何 购 买 商 业 版 本 的 Perl? 在 某 种 程 度 上 来 说 , Perl 已 经 算 是 商 业 软 体 了 : 您 可 以 把 Perl的 发 行 约 定 拿 来 细 读 给 您 的 经 理 听 。 各 发 行 版 都 附 有 这 份 条 例 清 楚 、 明 确 的 公 约 。 Perl有 广 大 的 使 用 者 及 广 泛 的 文 献 。 comp.lang.perl.*等 新 闻 讨 论 群 组 和 各 电 子 邮 递 论 坛 更 是 对 各 种 疑 难 杂 症 提 供 迅 速 的 解 答 。 Perl 传 统 上 一 直 是 由 Larry、 许 多 软 体 设 计 工 程 师 , 以 及 成 千 上 万 的 程 式 写 作 者 提 供 支 援 , 大 伙 协 力 让 人 人 过 更 美 好 的 日 子 。 尽 管 如 此 , 有 些 主 管 坚 持 只 向 附 售 后 保 证 的 公 司 下 订 单 , 这 样 子 出 了 问 题 才 可 以 告 他 们 , 故 以 上 的 回 答 可 能 无 法 令 这 类 的 经 理 满 意 。 或 许 是 这 类 的 主 管 觉 得 亦 步 亦 趋 的 扶 持 支 援 及 很 强 的 合 约 义 务 有 其 必 要 。 市 面 上 有 卖 用 玻 璃 纸 密 封 包 装 的 Perl 光 碟 , 您 可 以 试 试 看 , 或 许 对 您 的 经 理 有 效 。

Alternatively, you can purchase commercial incidence based support through the Perl Clinic. The following is a commercial from them:

"The Perl Clinic is a commercial Perl support service operated by ActiveState Tool Corp. and The Ingram Group. The operators have many years of in-depth experience with Perl applications and Perl internals on a wide range of platforms.

"Through our group of highly experienced and well-trained support engineers, we will put our best effort into understanding your problem, providing an explanation of the situation, and a recommendation on how to proceed."

Contact The Perl Clinic at

    www.PerlClinic.com
    North America Pacific Standard Time (GMT-8)
    Tel:    1 604 606-4611 hours 8am-6pm
    Fax:    1 604 606-4640

    Europe (GMT)
    Tel:    00 44 1483 862814
    Fax:    00 44 1483 862801

See also www.perl.com for updates on tutorials, training, and support. 如 果 发 现 bugs要 向 何 处 报 告 ? 如 果 您 发 现 perl解 译 器 或 标 准 发 行 中 的 模 组 有 bugs , 想 报 知 perl 发 布 小 组 的 话 , 请 使 用 perl发 行 中 所 附 的 perlbug 程 式 , 或 将 您 的 报 告 email 到 perlbug [AT] perl.org . 如 果 您 想 报 告 的 bug是 有 关 某 个 非 标 准 发 行 的 perl( 详 见 「 哪 些 平 台 上 有 Perl ? 」 一 题 的 答 案 ) 、 某 可 执 行 档 形 式 的 发 行 , 或 是 某 非 标 准 的 模 组 ( 譬 如 Tk、 CGI 等 ) , 那 么 请 参 考 它 所 附 的 使 用 说 明 , 以 确 定 最 合 适 报 告 bugs的 地 方 。 详 情 请 见 perlbug(1) 手 册 页 (perl5.004 或 更 新 版 本 )。 什 么 是 perl.com? Perl Mongers? pm.org? perl.org? cpan.org?

The Perl Home Page at http://www.perl.com/ is currently hosted by The O’Reilly Network, a subsidiary of O’Reilly and Associates.

Perl Mongers is an advocacy organization for the Perl language which maintains the web site http://www.perl.org/ as a general advocacy site for the Perl language.

Perl Mongers uses the pm.org domain for services related to Perl user groups, including the hosting of mailing lists and web sites. See the Perl user group web site at http://www.pm.org/ for more information about joining, starting, or requesting services for a Perl user group.

Perl Mongers also maintain the perl.org domain to provide general support services to the Perl community, including the hosting of mailing lists, web sites, and other services. The web site http://www.perl.org/ is a general advocacy site for the Perl language, and there are many other sub-domains for special topics, such as

    http://bugs.perl.org/
    http://history.perl.org/
    http://lists.perl.org/
    http://use.perl.org/

http://www.cpan.org/ is the Comprehensive Perl Archive Network, a replicated worlwide repository of Perl software, see the What is CPAN ? question earlier in this document.

AUTHOR AND COPYRIGHT

Copyright (c) 1997-2001 Tom Christiansen and Nathan Torkington. All rights reserved.

This documentation is free; you can redistribute it and/or modify it under the same terms as Perl itself.

Irrespective of its distribution, all code examples here are in the public domain. You are permitted and encouraged to use this code and any derivatives thereof in your own programs for fun or for profit as you see fit. A simple comment in the code giving credit to the FAQ would be courteous but is not required.

译 者

萧 百 龄 , 两 只 老 虎 工 作 室 跋 本 页 面 中 文 版 由 中 文 man 手 册 页 计 划 提 供 。 中 文 man 手 册 页 计 划 : https://github.com/man-pages-zh/manpages-zh