Help for this page

Select Code to Download


  1. or download this
    my $strip = 0;
    GetOptions(striphtml => \$strip);
    if ($strip) {striphtml()} else {main()}
    
  2. or download this
    my $strip = 0;
    GetOptions(striphtml => sub {striphtml(); $strip = 1})
    main() unless $strip;