I removed my perl 5.8.0 rpm and installed binary perl 5.8.3. It's works fine
but when I try to install some rpm like mrtg I get the follow errors:
rpm -ivh mrtg-2.9.17-13.i386.rpm
erro: Failed dependencies:
perl >= 5.004 is needed by mrtg-2.9.17-13
/usr/bin/perl is needed by mrtg-
F H wrote:
I have a directory where log files are saved in on a daily basis by
a VB program. and what I need is a way to get the last file stored
into that directory. The last modified file in that directory
should do it.
perldoc -f stat
--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin
Alternative to all the other suggestions, you could get a shell account
with one of a number of providers like www.freeshell.org and use Perl
from there. I think there may be some restrictions on Perl at the basic
membership levels, but I think it's safe to say that most such
providers have P
Hi there,
I have a directory where log files are saved in on a daily basis by a VB program. and
what I need is a way to get the last file stored into that directory. The last
modified file in that directory should do it. Any help is really appreciated
F.
dan wrote:
Hi all, again!
I'm attempting to make a web page, where all the buttons are dynamic, where
dynamic I say there's 1 "template" button image with nothing written on it,
and I want to put requests into a html page to call a script as an image to
put text on top of the image, then output as
On Jun 25, 2004, at 5:56 PM, dan wrote:
Hi all, again!
I'm attempting to make a web page, where all the buttons are dynamic,
where
dynamic I say there's 1 "template" button image with nothing written
on it,
and I want to put requests into a html page to call a script as an
image to
put text on t
"Daniel Falkenberg" <[EMAIL PROTECTED]> wrote:
> Hello again,
Hi.
*Always* put the following at the top of your code:
use strict; # requires declaration of all variables
use warnings; # gives warnings on mistakes and suggestions
These two lines will save you countless hours of debugging
Hi all, again!
I'm attempting to make a web page, where all the buttons are dynamic, where
dynamic I say there's 1 "template" button image with nothing written on it,
and I want to put requests into a html page to call a script as an image to
put text on top of the image, then output as 1 image. D