#VIC:trade_mark: VIC:trade_mark: 是一种很好的语法,可以编译为 PIC 程序集。 有关详细的最新文档,请阅读 。 ##以用户身份从源头构建 有关安装的更多详细信息,请参阅: : 从源代码快速构建一些东西: $ perl ./Build.PL --install_base=/usr/local/ $ ./Build test $ ./Build install ##依赖 该模块依赖于以下需要使用 CPAN 安装的模块。 有关安装的更多详细信息,请参阅: : Module::Build Pegex Moo Getopt::Long XXX (仅用于调试) ##测试模块 如果您是开发人员,要进行测试,您需要安装App::Prove : $ prove -lv t 另一种选择是使用Build.PL $ ./Build test ##Vim 语法 VIC:trade_mark: 的vim语法在sh
2021-07-02 15:03:42 148KB Perl
1
名称 WWW::Google::Time - 通过 Google 获取不同地点的时间 概要 use strict; use warnings; use WWW::Google::Time; my $t = WWW::Google::Time->new; $t->get_time("Toronto") or die $t->error; printf "It is %s, %s (%s) %s %s, %s in %s\n", @{ $t->data }{qw/ day_of_week time time_zone month month_day year where /}; 描述 模块非常简单,它接受某个地点的名称并返回该地点的当前时间(只要谷歌有该信息)。 建设者 new my $t = WWW::Google::Time->ne
2021-07-02 15:03:42 27KB Perl
1
名称 Hashids - 从数字生成短哈希 概要 use Hashids; my $hashids = Hashids->new('this is my salt'); # encrypt a single number my $hash = $hashids->encode(123); # 'YDx' my $number = $hashids->decode('YDx'); # 123 # or a list $hash = $hashids->encode(1, 2, 3); # 'eGtrS8' my @numbers = $hashids->decode('laHquq'); # (1, 2, 3) # also get results in an arrayref my $numbers = $hashids->decode('l
2021-07-02 15:03:41 15KB Perl
1
名称 Test::Flatten - 子测试输出到展平 概要 吨/英尺 use Test::More; use Test::Flatten; subtest 'foo' => sub { pass 'OK'; }; subtest 'bar' => sub { pass 'ok'; subtest 'baz' => sub { pass 'ok'; }; }; done_testing; 运行 $ prove -lvc t/foo.t t/foo.t .. # ------------------------------------------------------------------------------ # foo # -----------------------------------------------------
2021-07-02 15:03:41 22KB Perl
1
名称 Web::Query - 另一个像 jQuery 一样的抓取库 概要 use Web::Query; wq('http://www.w3.org/TR/html401/') ->find('div.head dt') ->each(sub { my $i = shift; printf("%d %s\n", $i+1, $_->text); }); 描述 Web::Query 是另一个抓取框架,具有类似 jQuery 的界面。 是的,我知道 Ingy 的 。 但这只是阿尔法质量。 它不起作用。 Web::Query 构建在 CPAN 模块 、 和之上。 因此,该模块使用并且仅支持该模块支持的 CSS 3 选择器。 Web::Query 不支持 jQuery 的扩展查询(还没有?)。 如果选择器作为标量 ref 传递,它将被
2021-07-02 15:03:40 44KB Perl
1
名称 PerlMongers::Hannover - 汉诺威 Perl Mongers 版本 版本 0.7.5 概要 use PerlMongers::Hannover qw(info); info(); 网站 IRC频道 irc.perl.org #hannover.pm 邮件列表 电子邮件 聚会 每个奇数日历周星期二下午 6 点; 通过 Twitter、电子邮件和网站公布的日期和地点详情: 博客 推特 GitHub https://github.com/Hannover-pm 方法 信息 返回有关 Hannover Perl Mongers 的信息。 支持 源代码 此包的代码存储库位于: https://github.com/paultcochrane/PerlMongers-Hannover git clone https://github.com/paultco
2021-07-02 15:03:40 11KB Perl
1
名称 File::ConfigDir::Install - allows installing configuration files 概要 use ExtUtils::MakeMaker; use File::ConfigDir::Install; install_config 'etc'; WriteMakefile( ... ); # As you normaly would package MY; use File::ConfigDir::Install qw(:MY); 描述 File::ConfigDir::Install allows you to install configuration files from a distribution. 作者 Jens Rehsack, "" 错误 Please repo
2021-07-02 15:03:39 11KB Perl
1
文件::配置目录::Plack 描述 File::ConfigDir::Plack 用作 File::ConfigDir 的插件来查找 Plack 环境的配置目录。 这需要设置环境变量 PLACK_ENV 并且目录环境必须存在于正在运行的进程映像的目录中或最多 3 级以上。 构建/安装 cpan File::ConfigDir::Plack 版权/许可 版权所有 (C) 2013,2014 Jens Rehsack 该程序是免费软件; 您可以根据以下任一条款重新分发和/或修改它: 由自由软件基金会发布的 GNU 通用公共许可证; 或艺术许可证。 有关更多信息,请参阅 。 文档/支持 安装后,您可以使用 perldoc 命令找到此模块的文档。 perldoc File::ConfigDir::Plack 您还可以在以下位置查找信息: RT, CPAN's request trac
2021-07-02 15:03:39 10KB Perl
1
名称 yq - 通过命令行程序过滤 YAML 版本 版本 0.015 地位 概要 yq [-v] [removed] [...] yq -h|--help|--version 描述 注意:这个项目现在是 。 此发行版已弃用,不会更新。 该程序采用 YAML 文档流(在 STDIN 或文件参数上),应用过滤器,然后将结果写入 STDOUT。 论据 脚本 要运行的脚本。 有关脚本语法,请参阅 。 要过滤的 YAML 文件。 特殊文件“-”指的是 STDIN。 如果未指定文件,则过滤 STDIN。 选项 -v | --详细 设置详细模式以在 STDERR 上打印一些内部程序消息以帮助调试。 -h | - 帮助 显示此帮助文档。 - 版本 打印当前的 yq 和 Perl 版本。 句法 表情 EXPRESSION可以是FILTER 、 VALUE或COMPARISON 。 过
2021-07-02 15:03:39 47KB Perl
1
NNexus 在上发布。 只需执行cpan NNexus (或cpanm如果您是 cpanminus 爱好者)即可获得完整的发行版。 NNexus 提供了一个 API 和一个用于自动链接数学概念的引擎。 它支持概念索引、概念发现和灵活注释(例如链接)等子任务。 NNexus 是免费、自由、开源的软件。 该库附带了来自 PlanetMath、维基百科、Wolfram Mathworld 和 DLMF 的 10,000 多个概念的预打包快照。 你可以直接使用 perl one-liner: perl -MNNexus -e ' print linkentry(join("",<>)) ' linked_example.html ...或阅读本自述文件的其余部分以获取安装说明和进一步的用例。 草案包含 NNexus 系统的技术概述。 对于安装和部
2021-07-02 15:03:38 3.6MB Perl
1