Mandor has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/local/bin/perl use strict; use FindBin qw($Bin); use lib "$Bin" . "/Modules"; use Modules::LWP::Simple; use Modules::XML::Simple; use Modules::HTML::Template; sub generate_reports { my $xmlfile = get ($xml_path); my $tree = XMLin ($xmlfile); ... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Including Modules with a script
by TheoPetersen (Priest) on Jul 11, 2001 at 16:19 UTC | |
|
Re: Including Modules with a script
by davorg (Chancellor) on Jul 11, 2001 at 16:16 UTC | |
|
Re: Including Modules with a script
by Abigail (Deacon) on Jul 11, 2001 at 17:49 UTC | |
|
Re: Including Modules with a script
by bikeNomad (Priest) on Jul 11, 2001 at 17:33 UTC | |
|
Re: Including Modules with a script
by Mandor (Pilgrim) on Jul 12, 2001 at 00:02 UTC |