Re: clamav stats script help

2006-05-24 Thread Chris
On Wednesday 24 May 2006 8:58 pm, Frank D. Gunseor wrote: > Maybe your machine is clean - there are no viruses to detect? > > Wed May 24 18:33:49 2006 -> Accepted connection on port 1451, fd 8 Wed > May 24 18:33:49 2006 -> stream: > Html.Phishing.Bank.Gen503.Sanesecurity.06042004 FOUND Wed May

Re: clamav stats script help

2006-05-24 Thread Chad Perrin
On Wed, May 24, 2006 at 06:58:34PM -0700, Frank D. Gunseor wrote: > Maybe your machine is clean - there are no viruses to detect? > > -Original Message- > From: Chris [mailto:[EMAIL PROTECTED] > > Html.Phishing.Bank.Gen503.Sanesecurity.06042004 FOUND Wed May 24 18:33:52 > Html.Phish

RE: clamav stats script help

2006-05-24 Thread Frank D. Gunseor
Maybe your machine is clean - there are no viruses to detect? -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 24, 2006 6:55 PM To: beginners@perl.org Subject: clamav stats script help I've downloaded a script that is supposed to output stats on virus's

clamav stats script help

2006-05-24 Thread Chris
I've downloaded a script that is supposed to output stats on virus's that clamav detects.  Needless to say its not working correctly and I'm soliciting some help since I know nothing about perl.  I'm sort of getting output however it doesn't show any virus's detected.  I'd attach the script but

Re: Is there any funny game that was written in Perl? Thanks.

2006-05-24 Thread Paul Johnson
On Wed, May 24, 2006 at 05:18:46AM -0700, Leonid Grinberg wrote: > >What about frozen bubble? > > That was written in Perl? Really? http://www.oreillynet.com/onlamp/blog/2006/04/people_of_perl_guillaume_cottenceau.html -- Paul Johnson - [EMAIL PROTECTED] http://www.pjcj.net -- To uns

Re: suppressing selected warning messages

2006-05-24 Thread Xavier Noria
On May 24, 2006, at 18:48, Gavin Bowlby wrote: I can suppress all warning checks by doing a: no warnings; if ($a == 7) { use warnings; but I would like all other "normal" Perl warnings to be used for the statement: if ($a == 7) other than the check for the LHS of the equality check being a

suppressing selected warning messages

2006-05-24 Thread Gavin Bowlby
All: Is there a way to suppress a specific warning message produced by Perl? Example program: use strict; use warnings; my $a = "abc"; if ($a == 7) { print "a = 7\n"; } else { print "a != 7\n"; } = Output

Re: GnuPG module help?

2006-05-24 Thread Ricardo SIGNES
* "Dr.Ruud" <[EMAIL PROTECTED]> [2006-05-24T08:13:15] > "Angus" schreef: > > my @encrypted = $gpg->encrypt ('$data', '[EMAIL PROTECTED]'); > > > That call doesn't seem right to me: > http://search.cpan.org/~frajulac/GnuPG-0.09/ > > The protoptype in GnuPG.pm: encrypt($%) On one hand, you're qui

Re: GnuPG module help?

2006-05-24 Thread Dr.Ruud
"Angus" schreef: > my @encrypted = $gpg->encrypt ('$data', '[EMAIL PROTECTED]'); That call doesn't seem right to me: http://search.cpan.org/~frajulac/GnuPG-0.09/ The protoptype in GnuPG.pm: encrypt($%) -- Affijn, Ruud "Gewoon is een tijger." -- To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: Is there any funny game that was written in Perl? Thanks.

2006-05-24 Thread Leonid Grinberg
What about frozen bubble? That was written in Perl? Really? -- Leonid Grinberg [EMAIL PROTECTED] http://www.lgrinberg.org -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Is there any funny game that was written in Perl? Thanks.

2006-05-24 Thread Dani Pardo
What about frozen bubble? http://www.frozen-bubble.org/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Is there any funny game that was written in Perl? Thanks.

2006-05-24 Thread Japerlh
Thanks. -- Besh wishes, Japerlh -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: What are the most successful applications of Perl? Thanks.

2006-05-24 Thread Octavian Rasnita
Can you tell us why Java is better than mod_perl? Thanks. Teddy - Original Message - From: "Jeff Pang" <[EMAIL PROTECTED]> To: "beginners" Sent: Wednesday, May 24, 2006 4:32 AM Subject: Re: What are the most successful applications of Perl? Thanks. > For web application,I think Java

RE: GnuPG module help?

2006-05-24 Thread Angus
Hi Jason, Forgive me if I misunderstand your goal here but I think what you want is to take a file on your system such as testfile.txt and encrypt it with the script owners key and then later ftp this file out. To do this you don't need the private key that is only used to decrypt the data not en

RE: GnuPG module help?

2006-05-24 Thread Jason Balicki
Jason Balicki wrote: > I'm trying to do public key encryption on a file so that I can ftp > it to a server later. [snip] Nevermind. Kind of helps to, you know, open the file first. :) --J(K) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Re: Sorting files by date

2006-05-24 Thread cajun
[EMAIL PROTECTED] wrote: > [EMAIL PROTECTED] wrote: > > I have a rather large group of files (~5000) that I would like to sort > > into directories by date. Initially by year, then perhaps later by > > year/month. > > > > I'm looking at the -M operator, but it seems like that would requ

Re: Sorting files by date

2006-05-24 Thread John W. Krahn
[EMAIL PROTECTED] wrote: > I have a rather large group of files (~5000) that I would like to sort > into directories by date. Initially by year, then perhaps later by > year/month. > > I'm looking at the -M operator, but it seems like that would require you > find the number of days of the year, t

Sorting files by date

2006-05-24 Thread cajun
I have a rather large group of files (~5000) that I would like to sort into directories by date. Initially by year, then perhaps later by year/month. I'm looking at the -M operator, but it seems like that would require you find the number of days of the year, today is, then do the math. I'm