Help for this page

Select Code to Download


  1. or download this
    @jpgs = glob("/path/to/images/*.jpg");
    
    @big_jpgs = grep { -s $_ > 100000 } glob("/images/*.jpg");
    
  2. or download this
    my $template = get_template();
    $template =~ s/<%token%>/$token_value/g;