Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl -T
    use strict;
    ...
        my $url = shift;
        $ua->get($url);
        warn;
    
  2. or download this
    #!/usr/bin/env perl -T
    use strict;
    ...
        my $so = join "\n", $ua->content =~/(so\.addVariable\(\s*'.+?'\s*,
    +\s*'.+?'\s*\)\s*;)/mg;
        while($so =~/so\.addVariable\('([^']+)','([^']+)'\);/mg) { }
    }