[Perl-unix-users] Module Versions.

2003-01-17 Thread Rumpf, Christopher
Title: Message Hi.   I just inherited a perl installation with a ton of modules included in it and want to check each module to see which version is installed.   I know that this cmd: find `perl -e 'print "@INC"'` -name '*.pm' -print   will show me the list of installed modules - but anyon

RE: [Perl-unix-users] setting environmental variables

2002-11-07 Thread Rumpf, Christopher
day, November 06, 2002 2:10 PM To: [EMAIL PROTECTED] Subject: RE: [Perl-unix-users] setting environmental variables Could you show me a working example of this? Regards, Torbjørn Lindahl On Wed, 6 Nov 2002, Rumpf, Christopher wrote: > I got around it one by cheating (hack). > > I set

RE: [Perl-unix-users] setting environmental variables

2002-11-06 Thread Rumpf, Christopher
I got around it one by cheating (hack). I set the env variable...then just spawned $ENV{SHELL} which inherits the var you set earlier - and then just waited for the pid of the spawned SHELL process to return before exiting the perl script. Just an idea which may work for you. Gl. -Chris -O