Performance is sufficient, but I'm looking for something more robust. My ideal script would have all the capabilities of Excel's autofilter (range search, match and negative match on same field, etc.)
Does anyone have a favorite script for this?
But do a search on CPAN (cpan.org) and theres a whole host of different methods to try. The most functional would probably by DBD:CSV... Treats a csv file as a database so you can use SQL on it.
But then its Perl. Its what it's good at...
Storyteller, I true DB would definitely be the prefered method, but the details of the multiple sites I'm running off my current "DB" make the management overhead of SQL unattractive.
Simply upload the perl module, untar/gzip it, and run the following from the directory thats created when you untar the module:
perl Makefile.PL PREFIX=/home/dkubb/lib
make test install (Replace "/home/dkubb/lib" with your library directory)
Then in your perl scripts, add the following BEFORE you "use" any modules:
use lib qw(/home/dkubb/lib); When the perl script runs it will look in this directory first when loading modules.