RE: running another script under win98

2001-03-01 Thread Ember Normand
(without the quotes) and starts with the package name (without the .pm). Hope this helps. --Ember -Original Message- From: Jean-Paul Felix [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 01, 2001 11:07 AM To: Perl-Win32-Users (E-mail) Subject: running another script under win98 I have se

Re: running another script under win98

2001-03-01 Thread Ron Grabowski
> complicated for what I require as no variables are passed just a file read require 'common_code.pl'; where common_code.pl might look like: open FOO, 'foo.txt' or die "foo: $!"; # stuff close FOO; 1; # remember this ___ Perl-Win32-Users mailing

running another script under win98

2001-03-01 Thread Jean-Paul Felix
I have several scripts which all execute the same code at the end. I would like to separate this common code into another file and have it executed by each script just before it finishes (no return). I've looked at libraries, packages, modules and it all seems over complicated for what I require