Help for this page

Select Code to Download


  1. or download this
    use Module::Find;
    # my @found = findsubmod('ABC');  #if you want all ABC::* modules
    my @found = grep { m/^ABC::plot_/ } findsubmod('ABC');  #all ABC::plot
    +_* modules