/usr/local/bin
NameSizeModeActions
config_data71380555editdlrm
crc3210430555editdlrm
crontab33207360755editdlrm
drush61386460755editdlrm
drush.phar61386460755editdlrm
ea-php7258154000755editdlrm
ea-php7356472880755editdlrm
ea-php7463832960755editdlrm
ea-php8079860800755editdlrm
ea-php8180989520755editdlrm
ea_convert_php_ini408110755editdlrm
ea_current_to_profile115190755editdlrm
ea_install_profile72740755editdlrm
ea_sync_user_phpini_settings68880755editdlrm
htmltree11730555editdlrm
instmodsh41940555editdlrm
ipcount37240555editdlrm
iptab9820555editdlrm
json_pp38280555editdlrm
json_xs70130555editdlrm
lsphp9370755editdlrm
lwp-download86350555editdlrm
lwp-dump27970555editdlrm
lwp-mirror24780555editdlrm
lwp-request150590555editdlrm
mech-dump46230555editdlrm
passwd37686640755editdlrm
pear9350755editdlrm
php9330755editdlrm
php-config63840755editdlrm
prove134570555editdlrm
ptar34560555editdlrm
ptardiff25350555editdlrm
ptargrep42990555editdlrm
shasum92870555editdlrm
tpage89230555editdlrm
ttree392340555editdlrm
wp69284610755editdlrm
wp-cli.phar69284610755editdlrm
zipdetails483660555editdlrm
Edit: /usr/local/bin/htmltree (1173B)
#!/usr/bin/perl eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' if 0; # not running under some shell # 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 require 5; use warnings; use strict; my $warn; BEGIN { # We have to set debug level before we use HTML::TreeBuilder. $HTML::TreeBuilder::DEBUG = 0; # default debug level $warn = 0; while(@ARGV) { # lameo switch parsing if($ARGV[0] =~ m<^-D(\d+)$>s) { $HTML::TreeBuilder::DEBUG = $1; print "Debug level $HTML::TreeBuilder::DEBUG\n"; shift @ARGV; } elsif ($ARGV[0] =~ m<^-w$>s) { $warn = 1; shift @ARGV; } else { last; } } } use HTML::TreeBuilder; foreach my $file (grep( -f $_, @ARGV)) { print "=" x 78, "\n", "Parsing $file...\n"; my $h = HTML::TreeBuilder->new; $h->ignore_unknown(0); $h->warn($warn); $h->parse_file($file); print "- "x 39, "\n"; $h->dump(); $h = $h->delete(); # nuke it! print "\n\n"; } exit; __END__