in reply to Re: Installing a non-standard module to the right place
in thread Installing a non-standard module to the right place
This will create sym-links for all the files in the module directory (or whever you want them created)cd /path/to/perl/modules for i in `ls -1` do ln -s `pwd`/$i /path/you/want/sym-link/created/$i done
|
|---|