Help for this page

Select Code to Download


  1. or download this
    sub filter {
        my $file = shift;
    
    ...
            s/BASEURL=// and return qq|<li><a href="$_">$_</a></li>\n|;
        }
    }
    
  2. or download this
    sub expand {
       map { bsd_glob($_) } @_;
    }
    
  3. or download this
    print "<ul>\n", map { filter($_) } map { bsd_glob($_) } @ARGV, "\n";