Changes between Version 33 and Version 34 of Dev/Perl
- Timestamp:
- Jan 27, 2011 2:04:22 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Dev/Perl
v33 v34 65 65 66 66 * [http://oreilly.com/pub/h/943 Adding Progress Bars to Your Scripts] 67 68 * htmltree => cpan:HTML::TreeBuilder 69 {{{#!perl 70 #!/usr/bin/perl 71 # Time-stamp: "2000-10-02 14:48:15 MDT" 72 # 73 # Parse the given HTML file(s) and dump the parse tree 74 # Usage: 75 # htmltree -D3 -w file1 file2 file3 76 # -D[number] sets HTML::TreeBuilder::Debug to that figure. 77 # -w turns on $tree->warn(1) for the new tree 78 79 (snip) 80 }}}