in reply to How to automatically search version- and architecture-specific module directories

this is a job for perl :) make a entry in /bin call Perl. this assumes that you have symbolic links to /bin/perl that point to the version your testing. #!/usr/bin/perl #/usr/bin/Perl if ($] > 5.005) { $ENV{'PERL5LIB'} =~ s/^/\/p\/perl\/lib\/site_perl\/5.6:/; } exec '/usr/bin/perl' , @ARVG;
  • Comment on RE: How to automatically search version- and architecture-specific module directories

Replies are listed 'Best First'.
RE: RE: How to automatically search version- and architecture-specific module directories
by ZZamboni (Curate) on May 08, 2000 at 23:49 UTC
    I guess this would work. Sigh... I was hoping for something built-in, some more intelligent behavior, coming from Perl... :-(

    Any other ideas?

    Thanks,

    --ZZamboni