RE: Extracting required files

2001-04-20 Thread Brendan McAdams
cd /toplevel dir of app grep -Hrn use * -Original Message- From: F.H [mailto:[EMAIL PROTECTED]] Sent: Friday, April 20, 2001 10:01 To: [EMAIL PROTECTED] Subject: Extracting required files Hi, Does anyone know of a perl command/or a simple way that would extract all .pm and .pl that a

RE: Extracting required files

2001-04-20 Thread Lakshmanan, Srikrishnan
]] Sent: Friday,April 20,2001 9:16 AM To: F.H; [EMAIL PROTECTED] Subject: RE: Extracting required files cd /toplevel dir of app grep -Hrn use * -Original Message- From: F.H [mailto:[EMAIL PROTECTED]] Sent: Friday, April 20, 2001 10:01 To: [EMAIL PROTECTED] Subject

RE: Extracting required files

2001-04-20 Thread Andrew Ho
Hello, FHDoes anyone know of a perl command/or a simple way that would extract FHall .pm and .pl that a perl script needs in order to run? SLI think the question being asked is , how to resolve ALL dependencies , SLnot just the first level given in the app. For example , I may use some SLlibs

RE: Extracting required files

2001-04-20 Thread Stas Bekman
On Fri, 20 Apr 2001, Andrew Ho wrote: Hello, FHDoes anyone know of a perl command/or a simple way that would extract FHall .pm and .pl that a perl script needs in order to run? SLI think the question being asked is , how to resolve ALL dependencies , SLnot just the first level given in

Re: RE: Extracting required files

2001-04-20 Thread F.H
Thanks you guys for your replies. The purpose of knowing a program dependencies is to help troubleshoot any problems that may occur once you install your script on a different machine or a a different OS such as from NT to UNIX and vice versa where different version of Perl may be installed.

Re: Extracting required files

2001-04-20 Thread Paul Johnson
On Fri, Apr 20, 2001 at 04:05:22PM -0400, F.H wrote: using print @INC doesn't help it just points you to the lib dir in your path. The suggestion was to investigate %INC at some appropriate point (not @INC), but note that in general this problem is not soluable. Did I hear someone mutter