RE: [Perl-unix-users] Sending out text and html email - Again

2001-07-16 Thread Richard A. Evans
An alternative that I think has been overlooked is sending a combined format. It is quite easy to do. If you really want to send HTML for the nice formatting, graphics, etc., the real size is already there. Adding the plain text generally does not add much bulk to the message and email clients

RE: [Perl-unix-users] Give me the guidence to install the PERL Modules

2001-06-19 Thread Richard A. Evans
I have run under HP-UX and Digital's Tru64, but not under Solaris. The easiest way I've found is to use the CPAN module. Hopefully it is already on your system. The syntax is perl -MCPAN -e shell If you do not have the CPAN module installed, I'd suggest you install it first -- manually -- a

RE: [Perl-unix-users] removing files of a given size from a given location

2001-06-12 Thread Richard A. Evans
Here's a little program. It doesn't delete anything, but you could easily determine how, I think. Regards, Rick Evans $dir = shift; opendir( DIR, $dir ) || die "Cannot open directory $dir \n$!"; while ( defined($file = readdir DIR) ) { next if not -T $file; print "The size o