wiki:Dev/Perl

Version 41 (modified by mitty, 12 years ago) (diff)

--

perlbrew

CPAN

cpanminus

misc

  • JPerl Advent Calendar 2010

    今年も JPerl Advent Calendar の季節がやってきました。 Perl に関連する tips を25本おとどけしちゃいます。 12月1日から毎日一本ずつ tips をアップしていっちゃうという企画です。 くわしくはこのあたりをみてください。

  • htmltree => cpan:HTML::TreeBuilder
    #!/usr/bin/perl
    # Time-stamp: "2000-10-02 14:48:15 MDT"
    #
    # Parse the given HTML file(s) and dump the parse tree
    # Usage:
    #  htmltree -D3 -w file1 file2 file3
    #    -D[number]  sets HTML::TreeBuilder::Debug to that figure.
    #    -w  turns on $tree->warn(1) for the new tree
    
    (snip)