Hello
I havew been using the MAIL command on Linux but I need to get a Perl script
working on a Windows XP machine running Internet Information Server.
How do I send an email on this beast?
Angus
Hello All,
I was wondering if it is more efficient (in terms of speed and processor
load) to have two different scripts of approximately the same size
called to handle two different functions, or to have one large script
handle all cgi functions using subroutines. Or perhaps these situations
Are you just printing lines and directing the output to the Linux Mail,
or are you using the Perl Mail package on Linux?
Mail::Sendmail should work platform independent.
If that is what you are using, perhaps you might want to show a line of
code that you are using that needs to be modified for XP
It depends on how you are using your scripts. The most "expensive"
aspect of the files is the IO used to read them from the hard drive they
reside on. If you are calling on the scripts multiple times and they
have to be read each time, rather than being cached in memory, then you
only want to read
Moore, George T. wrote:
It depends on how you are using your scripts. The most "expensive"
aspect of the files is the IO used to read them from the hard drive they
reside on. If you are calling on the scripts multiple times and they
have to be read each time, rather than being cached in memory, t
On Wed, 2006-14-06 at 16:40 -0700, Hardly Armchair wrote:
> Hello All,
>
> I was wondering if it is more efficient (in terms of speed and processor
> load) to have two different scripts of approximately the same size
> called to handle two different functions, or to have one large script
> hand
Moore, George T. wrote:
It depends on how you are using your scripts. The most "expensive"
aspect of the files is the IO used to read them from the hard drive they
reside on. If you are calling on the scripts multiple times and they
have to be read each time, rather than being cached in memory, t