RPM perl X binary perl

2004-06-26 Thread Zeus
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-

Re: last modified file

2004-06-26 Thread Gunnar Hjalmarsson
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

Re: A possibly stupid 'Perl' question?

2004-06-26 Thread Damon Allen Davison
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

last modified file

2004-06-26 Thread F H
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.

Re: Creating images

2004-06-26 Thread Andrew Gaffney
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

Re: Creating images

2004-06-26 Thread James Edward Gray II
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

Re: Printing outside of foreach...

2004-06-26 Thread Zeus Odin
"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

Creating images

2004-06-26 Thread dan
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