in reply to Re^4: How to tail file on remote host
in thread How to tail file on remote host
Actually, most modules can be installed in a custom place just using the Makefile.PL PREFIX option.use lib => '/home/wayne/lib/perl5/';
For instance, on my system:
will install the module under /home/salva/share/perl/5.10.0/$ perl Makefile.PL PREFIX=~/ $ make $ make test $ make install
|
|---|