On Tuesday 14 June 2005 07:27, Rui Fernandes wrote: > But I've got a problem: as usually, my host does > not want to install the modules in the server - so I can't access them this > way. What simple transformations could I do to have a perl script to call > the routine:
You can install the modules in your home. For example, you can put your script in ~/perl/bin and install the modules in ~/perl/lib. Then, in your script, put this at the top: BEGIN { use FindBin; use lib "$FindBin::Bin/../lib"; } use DateTime; ...