very beginner

2003-06-11 Thread DiGregorio, Dave
Could someone direct me to the correct module to use for monitoring an Internet connection? I just want to see the IP addresses of the machines trying to get into my PC. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: very beginner

2003-06-11 Thread Bakken, Luke
Steps: 1. Install Windump http://windump.polito.it/ 2. Watch logfile, or write perl script to parse log file. Luke -Original Message- From: DiGregorio, Dave [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 11, 2003 7:04 AM To: Bakken, Luke Subject: RE: very beginner Win ME

Re: very beginner

2003-06-11 Thread John W. Krahn
Dave Digregorio wrote: Could someone direct me to the correct module to use for monitoring an Internet connection? I just want to see the IP addresses of the machines trying to get into my PC. Get a progam like Ethereal: http://www.ethereal.com/ :-) John -- use Perl; program fulfillment

RE: very beginner

2003-06-11 Thread Kipp, James
Could someone direct me to the correct module to use for monitoring an Internet connection? I just want to see the IP addresses of the machines trying to get into my PC. Get a progam like Ethereal: http://www.ethereal.com/ or: netstat tcpdump lsof and roll your own with Socket

Re: very beginner

2003-06-11 Thread Mark G
;; listen($socket,5) || die couldn't listen: $!\n;; print connected to: .inet_ntoa( (sockaddr_in( accept($remote_socket,$socket) ))[1] ); ~~~ paste - Original Message - From: Kipp, James [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 11, 2003 3:50 PM Subject: RE: very

RE: A very beginner

2002-05-06 Thread David Gray
Good Lord, you're gonna scare away the beginners who have questions about perl! Hi, I'm a beginner that doesn't even have perl yet. I woul like to know whether Perl is faster or Java for business applications. Paul has already provided the correct Party Line from the typical Perl

Re: A very beginner

2002-05-06 Thread drieux
On Monday, May 6, 2002, at 09:07 , David Gray wrote: Good Lord, you're gonna scare away the beginners who have questions about perl! my apologies - that was clearly not my intentions Rather it was to re-assure those who are new to perl that yes all the generalized rules about how one

A very beginner

2002-05-04 Thread Greg Willings
Hi, I'm a beginner that doesn't even have perl yet. I woul like to know whether Perl is faster or Java for business applications. Thanks KH -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: A very beginner

2002-05-04 Thread Paul Johnson
On Sat, May 04, 2002 at 11:26:07AM +0200, Greg Willings wrote: Hi, I'm a beginner that doesn't even have perl yet. I woul like to know whether Perl is faster or Java for business applications. Short answer: It depends. Longer answer: It depends on lots of things. Faster to develop?

Re: A very beginner

2002-05-04 Thread Krikor Hovelian
Johnson [EMAIL PROTECTED] To: Greg Willings [EMAIL PROTECTED] Cc: Perl Beginners [EMAIL PROTECTED] Sent: Saturday, May 04, 2002 12:30 PM Subject: Re: A very beginner On Sat, May 04, 2002 at 11:26:07AM +0200, Greg Willings wrote: Hi, I'm a beginner that doesn't even have perl yet. I woul like

Re: A very beginner

2002-05-04 Thread drieux
On Saturday, May 4, 2002, at 02:26 , Greg Willings wrote: Hi, I'm a beginner that doesn't even have perl yet. I woul like to know whether Perl is faster or Java for business applications. Paul has already provided the correct Party Line from the typical Perl Advocate. So I'll be stuck

Re: A very beginner

2002-05-04 Thread Paul Johnson
On Sat, May 04, 2002 at 07:54:27AM -0700, drieux wrote: On Saturday, May 4, 2002, at 02:26 , Greg Willings wrote: Hi, I'm a beginner that doesn't even have perl yet. I woul like to know whether Perl is faster or Java for business applications. Paul has already provided the correct

Very beginner question

2001-05-09 Thread ODoisnea
I feel strange putting such a simple question on this list, but then again, that is why I did not join the experts list. Any how, if I have a file called try.txt with the following line: (name = john) if I am trying to just extract john for the value $b, why would the following script not

Re: Very beginner question

2001-05-09 Thread Jeff Pinyan
On May 9, [EMAIL PROTECTED] said: (name = john) if I am trying to just extract john for the value $b, why would the following script not work. I thought it would take bothIt returns the full (name=john) Let's run your regex through the regex explainer: (my $b=$_) =~ s/^(\() (\w+)/$2/;

RE: Very beginner question

2001-05-09 Thread King, Jason
[EMAIL PROTECTED] writes .. (name = john) - if I am trying to just extract john for the value $b, why would the following script not work. I thought it would take bothIt returns the full (name=john) #!user/local/bin/perl -w open TRY , try.txt; while (TRY) { (my $b=$_) =~ s/^(\()